| 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 23 matching lines...) Expand all Loading... |
| 34 #include "WebCanvas.h" | 34 #include "WebCanvas.h" |
| 35 #include "WebContentDecryptionModule.h" | 35 #include "WebContentDecryptionModule.h" |
| 36 #include "WebMediaSource.h" | 36 #include "WebMediaSource.h" |
| 37 #include "WebString.h" | 37 #include "WebString.h" |
| 38 #include "WebTimeRange.h" | 38 #include "WebTimeRange.h" |
| 39 #include "third_party/skia/include/core/SkXfermode.h" | 39 #include "third_party/skia/include/core/SkXfermode.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class WebAudioSourceProvider; | 43 class WebAudioSourceProvider; |
| 44 class WebAudioSourceProviderClient; | |
| 45 class WebContentDecryptionModule; | 44 class WebContentDecryptionModule; |
| 46 class WebMediaPlayerClient; | |
| 47 class WebString; | 45 class WebString; |
| 48 class WebURL; | 46 class WebURL; |
| 49 struct WebRect; | 47 struct WebRect; |
| 50 struct WebSize; | 48 struct WebSize; |
| 51 class WebGraphicsContext3D; | 49 class WebGraphicsContext3D; |
| 52 | 50 |
| 53 class WebMediaPlayer { | 51 class WebMediaPlayer { |
| 54 public: | 52 public: |
| 55 enum NetworkState { | 53 enum NetworkState { |
| 56 NetworkStateEmpty, | 54 NetworkStateEmpty, |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 virtual void enterFullscreen() { } | 167 virtual void enterFullscreen() { } |
| 170 | 168 |
| 171 virtual void enabledAudioTracksChanged(const WebVector<TrackId>& enabledTrac
kIds) { } | 169 virtual void enabledAudioTracksChanged(const WebVector<TrackId>& enabledTrac
kIds) { } |
| 172 // |selectedTrackId| is null if no track is selected. | 170 // |selectedTrackId| is null if no track is selected. |
| 173 virtual void selectedVideoTrackChanged(TrackId* selectedTrackId) { } | 171 virtual void selectedVideoTrackChanged(TrackId* selectedTrackId) { } |
| 174 }; | 172 }; |
| 175 | 173 |
| 176 } // namespace blink | 174 } // namespace blink |
| 177 | 175 |
| 178 #endif | 176 #endif |
| OLD | NEW |