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

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

Issue 2871833003: Move more classes to use WebLocalFrameBase from WebLocalFrameImpl. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/MediaKeysClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7d9ccd18e0cdb994b2946b5c166681be854e54aa..34780a870b8dcf2ce7fa41cd5c3b76adb386d43f 100644
--- a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
+++ b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
@@ -4,11 +4,11 @@
#include "web/AudioOutputDeviceClientImpl.h"
+#include <memory>
#include "core/dom/Document.h"
#include "core/dom/ExecutionContext.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "public/web/WebFrameClient.h"
-#include "web/WebLocalFrameImpl.h"
-#include <memory>
namespace blink {
@@ -24,8 +24,8 @@ void AudioOutputDeviceClientImpl::CheckIfAudioSinkExistsAndIsAuthorized(
DCHECK(context);
DCHECK(context->IsDocument());
Document* document = ToDocument(context);
- WebLocalFrameImpl* web_frame =
- WebLocalFrameImpl::FromFrame(document->GetFrame());
+ WebLocalFrameBase* web_frame =
+ WebLocalFrameBase::FromFrame(document->GetFrame());
web_frame->Client()->CheckIfAudioSinkExistsAndIsAuthorized(
sink_id, WebSecurityOrigin(context->GetSecurityOrigin()),
callbacks.release());
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/MediaKeysClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698