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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.h

Issue 2863853002: Introduce the class webLocalFrameBase anf make WebLocalFrameImpl derived it. (Closed)
Patch Set: Add WebLocalViewBase.h to the BUILD file. 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/WebLocalFrameImpl.h
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.h b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
index 10a814ef701c68ebe33994cd445077ab5bf359ff..b7d68443dd595f9a695685154d92989018de11d7 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
@@ -34,6 +34,7 @@
#include "core/editing/VisiblePosition.h"
#include "core/frame/ContentSettingsClient.h"
#include "core/frame/LocalFrame.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "platform/geometry/FloatRect.h"
#include "platform/heap/SelfKeepAlive.h"
#include "platform/wtf/Compiler.h"
@@ -84,7 +85,7 @@ class WebVector;
// Implementation of WebFrame, note that this is a reference counted object.
class WEB_EXPORT WebLocalFrameImpl final
: public GarbageCollectedFinalized<WebLocalFrameImpl>,
- NON_EXPORTED_BASE(public WebLocalFrame) {
+ NON_EXPORTED_BASE(public WebLocalFrameBase) {
public:
// WebFrame methods:
// TODO(dcheng): Fix sorting here; a number of method have been moved to

Powered by Google App Engine
This is Rietveld 408576698