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

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

Issue 2865953002: Move more users of WebLocalFrameImpl to WebLocalFrameBase. (Closed)
Patch Set: Convert DedicatedWorkerMessagingProxyProviderImpl to use WebLocalFrameBase. 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 | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 b7d68443dd595f9a695685154d92989018de11d7..c49733980caaaaa11770f7a2c3f7857f50910ef0 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
@@ -360,7 +360,7 @@ class WEB_EXPORT WebLocalFrameImpl final
static WebPluginContainerImpl* CurrentPluginContainer(LocalFrame*,
Node* = nullptr);
- WebViewBase* ViewImpl() const;
+ WebViewBase* ViewImpl() const override;
FrameView* GetFrameView() const {
return GetFrame() ? GetFrame()->View() : 0;
@@ -391,7 +391,7 @@ class WEB_EXPORT WebLocalFrameImpl final
// Otherwise, disallow scrolling.
void SetCanHaveScrollbars(bool) override;
- WebFrameClient* Client() const { return client_; }
+ WebFrameClient* Client() const override { return client_; }
void SetClient(WebFrameClient* client) { client_ = client; }
ContentSettingsClient& GetContentSettingsClient() {
@@ -407,7 +407,9 @@ class WEB_EXPORT WebLocalFrameImpl final
static void SelectWordAroundPosition(LocalFrame*, VisiblePosition);
TextCheckerClient& GetTextCheckerClient() const;
- WebTextCheckClient* TextCheckClient() const { return text_check_client_; }
+ WebTextCheckClient* TextCheckClient() const override {
+ return text_check_client_;
+ }
TextFinder* GetTextFinder() const;
// Returns the text finder object if it already exists.
@@ -428,8 +430,8 @@ class WEB_EXPORT WebLocalFrameImpl final
}
WebNode ContextMenuNode() const { return context_menu_node_.Get(); }
- void SetContextMenuNode(Node* node) { context_menu_node_ = node; }
- void ClearContextMenuNode() { context_menu_node_.Clear(); }
+ void SetContextMenuNode(Node* node) override { context_menu_node_ = node; }
+ void ClearContextMenuNode() override { context_menu_node_.Clear(); }
DECLARE_TRACE();
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698