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

Side by Side Diff: Source/web/WebMediaPlayerClientImpl.h

Issue 663893002: Clean up forward declarations in Source/web (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months 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 | « Source/web/WebLocalFrameImpl.h ('k') | Source/web/WebPluginContainerImpl.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 27 matching lines...) Expand all
38 #include "platform/weborigin/KURL.h" 38 #include "platform/weborigin/KURL.h"
39 #include "wtf/OwnPtr.h" 39 #include "wtf/OwnPtr.h"
40 #include "wtf/PassOwnPtr.h" 40 #include "wtf/PassOwnPtr.h"
41 #include "wtf/ThreadingPrimitives.h" 41 #include "wtf/ThreadingPrimitives.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class AudioSourceProviderClient; 45 class AudioSourceProviderClient;
46 class HTMLMediaElement; 46 class HTMLMediaElement;
47 class WebAudioSourceProvider; 47 class WebAudioSourceProvider;
48 class WebContentDecryptionModule;
49 class WebMediaPlayer; 48 class WebMediaPlayer;
50 49
51 // This class serves as a bridge between MediaPlayer and 50 // This class serves as a bridge between MediaPlayer and
52 // WebMediaPlayer. 51 // WebMediaPlayer.
53 class WebMediaPlayerClientImpl final : public MediaPlayer, public WebMediaPlayer Client { 52 class WebMediaPlayerClientImpl final : public MediaPlayer, public WebMediaPlayer Client {
54 53
55 public: 54 public:
56 static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*); 55 static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*);
57 56
58 virtual ~WebMediaPlayerClientImpl(); 57 virtual ~WebMediaPlayerClientImpl();
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 Mutex provideInputLock; 151 Mutex provideInputLock;
153 }; 152 };
154 153
155 AudioSourceProviderImpl m_audioSourceProvider; 154 AudioSourceProviderImpl m_audioSourceProvider;
156 #endif 155 #endif
157 }; 156 };
158 157
159 } // namespace blink 158 } // namespace blink
160 159
161 #endif 160 #endif
OLDNEW
« no previous file with comments | « Source/web/WebLocalFrameImpl.h ('k') | Source/web/WebPluginContainerImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698