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

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrame.cpp

Issue 2760793002: Use v8::Context::NewRemoteContext in RemoteWindowProxy. (Closed)
Patch Set: RemoteDOMWindow in DOMDataStore Created 3 years, 9 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/core/frame/RemoteFrame.cpp
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
index e864435226d862991a9816cad4617f57d8fc1615..c0a74c7b353853a261bc76e1a5d14ee06b6f4d75 100644
--- a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
+++ b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
@@ -44,6 +44,10 @@ RemoteFrame::~RemoteFrame() {
ASSERT(!m_view);
}
+RemoteDOMWindow* RemoteFrame::domWindow() const {
+ return toRemoteDOMWindow(Frame::domWindow());
+}
+
DEFINE_TRACE(RemoteFrame) {
visitor->trace(m_view);
visitor->trace(m_securityContext);

Powered by Google App Engine
This is Rietveld 408576698