Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Side by Side Diff: public/platform/WebMediaPlayer.h

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « public/platform/WebLocalCredential.h ('k') | public/platform/WebMediaPlayerClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « public/platform/WebLocalCredential.h ('k') | public/platform/WebMediaPlayerClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698