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

Unified Diff: Source/web/BackForwardClientImpl.h

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 11 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 | « Source/web/AssociatedURLLoader.cpp ('k') | Source/web/ChromeClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/BackForwardClientImpl.h
diff --git a/Source/web/BackForwardClientImpl.h b/Source/web/BackForwardClientImpl.h
index efc9e5afd81adb3220ff77c8707b59c733874a28..780f1e425dc6f7aee1b979b833de89e94940759e 100644
--- a/Source/web/BackForwardClientImpl.h
+++ b/Source/web/BackForwardClientImpl.h
@@ -36,16 +36,16 @@
namespace blink {
class WebViewImpl;
-class BackForwardClientImpl : public WebCore::BackForwardClient {
+class BackForwardClientImpl FINAL : public WebCore::BackForwardClient {
public:
explicit BackForwardClientImpl(WebViewImpl*);
virtual ~BackForwardClientImpl();
private:
// WebCore::BackForwardList methods:
- virtual int backListCount();
- virtual int forwardListCount();
- virtual int backForwardListCount();
+ virtual int backListCount() OVERRIDE;
+ virtual int forwardListCount() OVERRIDE;
+ virtual int backForwardListCount() OVERRIDE;
WebViewImpl* m_webView;
};
« no previous file with comments | « Source/web/AssociatedURLLoader.cpp ('k') | Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698