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

Unified Diff: content/public/test/render_view_test.h

Issue 686523002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 | « content/public/test/content_browser_test.h ('k') | content/public/test/test_renderer_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/render_view_test.h
diff --git a/content/public/test/render_view_test.h b/content/public/test/render_view_test.h
index 65bd63b3024967162df6bc6539f89687fcd92ad0..e4a8b5b48a74a22585c70ce8ce241406168d9896 100644
--- a/content/public/test/render_view_test.h
+++ b/content/public/test/render_view_test.h
@@ -52,7 +52,7 @@ class RenderViewTest : public testing::Test {
};
RenderViewTest();
- virtual ~RenderViewTest();
+ ~RenderViewTest() override;
protected:
// Spins the message loop to process all messages that are currently pending.
@@ -132,9 +132,9 @@ class RenderViewTest : public testing::Test {
virtual ContentRendererClient* CreateContentRendererClient();
// testing::Test
- virtual void SetUp() override;
+ void SetUp() override;
- virtual void TearDown() override;
+ void TearDown() override;
base::MessageLoop msg_loop_;
scoped_ptr<MockRenderProcess> mock_process_;
« no previous file with comments | « content/public/test/content_browser_test.h ('k') | content/public/test/test_renderer_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698