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

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

Issue 640803004: Add a basic DOMWindow base class and use it in WindowProxy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Move the member too Created 6 years, 2 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
« Source/core/frame/Frame.h ('K') | « Source/core/frame/RemoteFrame.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/RemoteFrame.cpp
diff --git a/Source/core/frame/RemoteFrame.cpp b/Source/core/frame/RemoteFrame.cpp
index 1ab261e0d7b03adc76d9ec25ab292fe3c9a72243..1b0e04e5b191d34055b23181db1a5b72f3ec9ea7 100644
--- a/Source/core/frame/RemoteFrame.cpp
+++ b/Source/core/frame/RemoteFrame.cpp
@@ -27,6 +27,12 @@ RemoteFrame::~RemoteFrame()
setView(nullptr);
}
+void RemoteFrame::trace(Visitor* visitor)
+{
+ visitor->trace(m_view);
+ Frame::trace(visitor);
+}
+
void RemoteFrame::navigate(Document& originDocument, const KURL& url, bool lockBackForwardList)
{
// The process where this frame actually lives won't have sufficient information to determine
@@ -49,12 +55,6 @@ void RemoteFrame::forwardInputEvent(Event* event)
remoteFrameClient()->forwardInputEvent(event);
}
-void RemoteFrame::trace(Visitor* visitor)
-{
- visitor->trace(m_view);
- Frame::trace(visitor);
-}
-
void RemoteFrame::setView(PassRefPtrWillBeRawPtr<RemoteFrameView> view)
{
// Oilpan: as RemoteFrameView performs no finalization actions,
« Source/core/frame/Frame.h ('K') | « Source/core/frame/RemoteFrame.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698