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

Unified Diff: content/public/test/test_renderer_host.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
Index: content/public/test/test_renderer_host.h
diff --git a/content/public/test/test_renderer_host.h b/content/public/test/test_renderer_host.h
index ffd4626190c06984c38bf7dd85b61cd09acb1c7b..5e40cbdc56851c568c78051c774834668dcf850d 100644
--- a/content/public/test/test_renderer_host.h
+++ b/content/public/test/test_renderer_host.h
@@ -148,7 +148,7 @@ class RenderViewHostTestEnabler {
class RenderViewHostTestHarness : public testing::Test {
public:
RenderViewHostTestHarness();
- virtual ~RenderViewHostTestHarness();
+ ~RenderViewHostTestHarness() override;
NavigationController& controller();
@@ -200,8 +200,8 @@ class RenderViewHostTestHarness : public testing::Test {
protected:
// testing::Test
- virtual void SetUp() override;
- virtual void TearDown() override;
+ void SetUp() override;
+ void TearDown() override;
// Derived classes should override this method to use a custom BrowserContext.
// It is invoked by SetUp after threads were started.
« no previous file with comments | « content/public/test/render_view_test.h ('k') | content/renderer/accessibility/renderer_accessibility_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698