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

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

Issue 2614143002: Use a new Supplement constructor for LocalFrame's supplements (Closed)
Patch Set: Created 3 years, 11 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.cpp
diff --git a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
index cada30663fab8eef9a5985eb29043d04a1091318..edbb127ab23925a742fd9cc638526f7fde4b6b25 100644
--- a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
+++ b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
@@ -12,11 +12,8 @@
namespace blink {
-AudioOutputDeviceClientImpl* AudioOutputDeviceClientImpl::create() {
- return new AudioOutputDeviceClientImpl();
-}
-
-AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl() {}
+AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl(LocalFrame& frame)
+ : AudioOutputDeviceClient(frame) {}
AudioOutputDeviceClientImpl::~AudioOutputDeviceClientImpl() {}

Powered by Google App Engine
This is Rietveld 408576698