content/media/apple/AppleDecoder.h

branch
TOR_BUG_9701
changeset 8
97036ab72558
equal deleted inserted replaced
-1:000000000000 0:95c533c8068e
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 #ifndef __AppleDecoder_h__
6 #define __AppleDecoder_h__
7
8 #include "MediaDecoder.h"
9
10 namespace mozilla {
11
12 class AppleDecoder : public MediaDecoder
13 {
14 public:
15 AppleDecoder();
16
17 virtual MediaDecoder* Clone() MOZ_OVERRIDE;
18 virtual MediaDecoderStateMachine* CreateStateMachine() MOZ_OVERRIDE;
19
20 };
21
22 }
23
24 #endif // __AppleDecoder_h__

mercurial