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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.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
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 d0afe6d385fa888414a3558c82e273420927c6b2..9e94c5cc8f33e3a7640b2d0c0478fdd8cb43503d 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
@@ -367,7 +367,7 @@ class WEB_EXPORT WebLocalFrameImpl final
return GetFrame() ? GetFrame()->View() : 0;
}
- WebDevToolsAgentImpl* DevToolsAgentImpl() const {
+ WebDevToolsAgentImpl* DevToolsAgentImpl() const override {
return dev_tools_agent_.Get();
}
@@ -393,7 +393,7 @@ class WEB_EXPORT WebLocalFrameImpl final
void SetCanHaveScrollbars(bool) override;
WebFrameClient* Client() const override { return client_; }
- void SetClient(WebFrameClient* client) { client_ = client; }
+ void SetClient(WebFrameClient* client) override { client_ = client; }
ContentSettingsClient& GetContentSettingsClient() {
return content_settings_client_;
@@ -415,12 +415,12 @@ class WEB_EXPORT WebLocalFrameImpl final
TextFinder* GetTextFinder() const;
// Returns the text finder object if it already exists.
// Otherwise creates it and then returns.
- TextFinder& EnsureTextFinder();
+ TextFinder& EnsureTextFinder() override;
// Returns a hit-tested VisiblePosition for the given point
VisiblePosition VisiblePositionForViewportPoint(const WebPoint&);
- void SetFrameWidget(WebFrameWidgetBase*);
+ void SetFrameWidget(WebFrameWidgetBase*) override;
// DevTools front-end bindings.
void SetDevToolsFrontend(WebDevToolsFrontendImpl* frontend) {
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp ('k') | third_party/WebKit/Source/web/WebScopedUserGesture.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698