OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 18 matching lines...) Expand all Loading... |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WebMediaPlayer_h | 31 #ifndef WebMediaPlayer_h |
32 #define WebMediaPlayer_h | 32 #define WebMediaPlayer_h |
33 | 33 |
34 #include "../platform/WebCanvas.h" | 34 #include "../platform/WebCanvas.h" |
35 #include "../platform/WebMediaSource.h" | 35 #include "../platform/WebMediaSource.h" |
36 #include "../platform/WebString.h" | 36 #include "../platform/WebString.h" |
37 #include "../platform/WebTimeRange.h" | 37 #include "../platform/WebTimeRange.h" |
38 | 38 |
39 namespace WebKit { | 39 namespace blink { |
40 | 40 |
41 class WebAudioSourceProvider; | 41 class WebAudioSourceProvider; |
42 class WebAudioSourceProviderClient; | 42 class WebAudioSourceProviderClient; |
43 class WebMediaPlayerClient; | 43 class WebMediaPlayerClient; |
44 class WebString; | 44 class WebString; |
45 class WebURL; | 45 class WebURL; |
46 struct WebRect; | 46 struct WebRect; |
47 struct WebSize; | 47 struct WebSize; |
48 class WebGraphicsContext3D; | 48 class WebGraphicsContext3D; |
49 | 49 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 virtual MediaKeyException addKey(const WebString& keySystem, const unsigned
char* key, unsigned keyLength, const unsigned char* initData, unsigned initDataL
ength, const WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupport
ed; } | 152 virtual MediaKeyException addKey(const WebString& keySystem, const unsigned
char* key, unsigned keyLength, const unsigned char* initData, unsigned initDataL
ength, const WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupport
ed; } |
153 virtual MediaKeyException cancelKeyRequest(const WebString& keySystem, const
WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupported; } | 153 virtual MediaKeyException cancelKeyRequest(const WebString& keySystem, const
WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupported; } |
154 | 154 |
155 // Instruct WebMediaPlayer to enter/exit fullscreen. | 155 // Instruct WebMediaPlayer to enter/exit fullscreen. |
156 virtual void enterFullscreen() { } | 156 virtual void enterFullscreen() { } |
157 virtual void exitFullscreen() { } | 157 virtual void exitFullscreen() { } |
158 // Returns true if the player can enter fullscreen. | 158 // Returns true if the player can enter fullscreen. |
159 virtual bool canEnterFullscreen() const { return false; } | 159 virtual bool canEnterFullscreen() const { return false; } |
160 }; | 160 }; |
161 | 161 |
162 } // namespace WebKit | 162 } // namespace blink |
163 | 163 |
164 #endif | 164 #endif |
OLD | NEW |