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

Unified Diff: third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h

Issue 2150443002: Supplement should have a Member to the corresponding Supplementable object (Part 1) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temp Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
diff --git a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
index b8bd34cbf658843c8d26888ff07a9224eed1d480..43afe7c7c335dc427345e898a517be3fed03a274 100644
--- a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
+++ b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
@@ -11,11 +11,13 @@
namespace blink {
+class LocalFrame;
+
class AudioOutputDeviceClientImpl : public GarbageCollectedFinalized<AudioOutputDeviceClientImpl>, public AudioOutputDeviceClient {
USING_GARBAGE_COLLECTED_MIXIN(AudioOutputDeviceClientImpl);
WTF_MAKE_NONCOPYABLE(AudioOutputDeviceClientImpl);
public:
- static AudioOutputDeviceClientImpl* create();
+ static AudioOutputDeviceClientImpl* create(LocalFrame&);
~AudioOutputDeviceClientImpl() override;
@@ -26,7 +28,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { AudioOutputDeviceClient::trace(visitor); }
private:
- AudioOutputDeviceClientImpl();
+ explicit AudioOutputDeviceClientImpl(LocalFrame&);
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/Supplementable.h ('k') | third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698