| 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_;
|
|
|