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

Unified Diff: third_party/WebKit/Source/core/frame/WebLocalFrameBase.h

Issue 2881693002: Move more classes to WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/TextFinder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/WebLocalFrameBase.h
diff --git a/third_party/WebKit/Source/core/frame/WebLocalFrameBase.h b/third_party/WebKit/Source/core/frame/WebLocalFrameBase.h
index e3c38dfc492a3fb4058a33f08e1d890fcc763b08..625458172184140f5cafc9b9416e44119074a237 100644
--- a/third_party/WebKit/Source/core/frame/WebLocalFrameBase.h
+++ b/third_party/WebKit/Source/core/frame/WebLocalFrameBase.h
@@ -15,7 +15,10 @@ class FrameView;
class LocalFrame;
class Node;
class Page;
+class TextFinder;
+class WebDevToolsAgentImpl;
class WebFrameClient;
+class WebFrameWidgetBase;
class WebTextCheckClient;
class WebViewBase;
@@ -35,6 +38,7 @@ class WebLocalFrameBase : public GarbageCollectedFinalized<WebLocalFrameBase>,
virtual WebViewBase* ViewImpl() const = 0;
virtual WebFrameClient* Client() const = 0;
+ virtual void SetClient(WebFrameClient*) = 0;
virtual WebTextCheckClient* TextCheckClient() const = 0;
virtual void SetContextMenuNode(Node*) = 0;
virtual void ClearContextMenuNode() = 0;
@@ -43,6 +47,9 @@ class WebLocalFrameBase : public GarbageCollectedFinalized<WebLocalFrameBase>,
virtual void InitializeCoreFrame(Page&,
FrameOwner*,
const AtomicString& name) = 0;
+ virtual TextFinder& EnsureTextFinder() = 0;
+ virtual void SetFrameWidget(WebFrameWidgetBase*) = 0;
+ virtual WebDevToolsAgentImpl* DevToolsAgentImpl() const = 0;
DEFINE_INLINE_VIRTUAL_TRACE() {}
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/TextFinder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698