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

Unified Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.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/WebRemoteFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
index c9c5d51561a8f472835e2e2d52592a03e9dd0bbf..2aef3722eaac709e12a31a2d897c09d9d011cc1f 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
@@ -51,6 +51,7 @@ WebRemoteFrameImpl::~WebRemoteFrameImpl() {}
DEFINE_TRACE(WebRemoteFrameImpl) {
visitor->Trace(frame_client_);
visitor->Trace(frame_);
+ WebRemoteFrameBase::Trace(visitor);
WebFrame::TraceFrames(visitor, this);
}
@@ -532,7 +533,7 @@ v8::Local<v8::Object> WebRemoteFrameImpl::GlobalProxy() const {
WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope,
WebRemoteFrameClient* client)
- : WebRemoteFrame(scope),
+ : WebRemoteFrameBase(scope),
frame_client_(RemoteFrameClientImpl::Create(this)),
client_(client),
self_keep_alive_(this) {}

Powered by Google App Engine
This is Rietveld 408576698