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

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

Issue 2878623002: Introduce WebRemoteFrameBase to break dependencies on WebRemoteFrameImpl. (Closed)
Patch Set: Fix windows linker errors. 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
Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index fde3271c895d1e1da9767984f818d3b535279019..4fb3271e3a0dc24e6e9ba39c6515bf5ee70b7af7 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -123,6 +123,7 @@
#include "web/WebInputEventConversion.h"
#include "web/WebLocalFrameImpl.h"
#include "web/WebPluginContainerImpl.h"
+#include "web/WebRemoteFrameImpl.h"
#include "web/WebSettingsImpl.h"
namespace blink {
@@ -957,6 +958,11 @@ WebLocalFrameBase* ChromeClientImpl::GetWebLocalFrameBase(LocalFrame* frame) {
return WebLocalFrameImpl::FromFrame(frame);
}
+WebRemoteFrameBase* ChromeClientImpl::GetWebRemoteFrameBase(
+ RemoteFrame& frame) {
+ return WebRemoteFrameImpl::FromFrame(frame);
+}
+
void ChromeClientImpl::SetEventListenerProperties(
LocalFrame* frame,
WebEventListenerClass event_class,

Powered by Google App Engine
This is Rietveld 408576698