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

Unified Diff: Source/web/tests/FrameTestHelpers.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/tests/FrameLoaderClientImplTest.cpp ('k') | Source/web/tests/FrameTestHelpers.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/FrameTestHelpers.h
diff --git a/Source/web/tests/FrameTestHelpers.h b/Source/web/tests/FrameTestHelpers.h
index 843d2b95786bfba8080b3ad4142512a9fef40856..9d50944f2ce57c6a7a39659e530eec6b58a414c1 100644
--- a/Source/web/tests/FrameTestHelpers.h
+++ b/Source/web/tests/FrameTestHelpers.h
@@ -98,10 +98,10 @@ class TestWebFrameClient : public WebFrameClient {
public:
TestWebFrameClient();
- virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) OVERRIDE;
- virtual void frameDetached(WebFrame*) OVERRIDE;
- virtual void didStartLoading(bool) OVERRIDE;
- virtual void didStopLoading() OVERRIDE;
+ virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) override;
+ virtual void frameDetached(WebFrame*) override;
+ virtual void didStartLoading(bool) override;
+ virtual void didStopLoading() override;
bool isLoading() { return m_loadsInProgress > 0; }
@@ -124,8 +124,8 @@ public:
class TestWebViewClient : public WebViewClient {
public:
virtual ~TestWebViewClient() { }
- virtual void initializeLayerTreeView() OVERRIDE;
- virtual WebLayerTreeView* layerTreeView() OVERRIDE { return m_layerTreeView.get(); }
+ virtual void initializeLayerTreeView() override;
+ virtual WebLayerTreeView* layerTreeView() override { return m_layerTreeView.get(); }
private:
OwnPtr<WebLayerTreeView> m_layerTreeView;
« no previous file with comments | « Source/web/tests/FrameLoaderClientImplTest.cpp ('k') | Source/web/tests/FrameTestHelpers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698