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

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

Issue 629203002: Replace OVERRIDE and FINAL with override and final in content/public/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « content/public/test/browser_test_base.cc ('k') | content/public/test/browser_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/browser_test_utils.h
diff --git a/content/public/test/browser_test_utils.h b/content/public/test/browser_test_utils.h
index b19ab4977e4e3f21349f1a0dd8819ff5d7e34cff..61ccfab6bc30ee88c201ba1a7fba6c58c59ff36d 100644
--- a/content/public/test/browser_test_utils.h
+++ b/content/public/test/browser_test_utils.h
@@ -227,8 +227,8 @@ class TitleWatcher : public WebContentsObserver {
private:
// Overridden WebContentsObserver methods.
- virtual void DidStopLoading(RenderViewHost* render_view_host) OVERRIDE;
- virtual void TitleWasSet(NavigationEntry* entry, bool explicit_set) OVERRIDE;
+ virtual void DidStopLoading(RenderViewHost* render_view_host) override;
+ virtual void TitleWasSet(NavigationEntry* entry, bool explicit_set) override;
void TestTitle();
@@ -252,7 +252,7 @@ class WebContentsDestroyedWatcher : public WebContentsObserver {
private:
// Overridden WebContentsObserver methods.
- virtual void WebContentsDestroyed() OVERRIDE;
+ virtual void WebContentsDestroyed() override;
scoped_refptr<MessageLoopRunner> message_loop_runner_;
@@ -281,8 +281,8 @@ class RenderProcessHostWatcher : public RenderProcessHostObserver {
virtual void RenderProcessExited(RenderProcessHost* host,
base::ProcessHandle handle,
base::TerminationStatus status,
- int exit_code) OVERRIDE;
- virtual void RenderProcessHostDestroyed(RenderProcessHost* host) OVERRIDE;
+ int exit_code) override;
+ virtual void RenderProcessHostDestroyed(RenderProcessHost* host) override;
RenderProcessHost* render_process_host_;
WatchType type_;
@@ -312,7 +312,7 @@ class DOMMessageQueue : public NotificationObserver {
// Overridden NotificationObserver methods.
virtual void Observe(int type,
const NotificationSource& source,
- const NotificationDetails& details) OVERRIDE;
+ const NotificationDetails& details) override;
private:
NotificationRegistrar registrar_;
« no previous file with comments | « content/public/test/browser_test_base.cc ('k') | content/public/test/browser_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698