Index: content/public/test/test_navigation_observer.cc |
diff --git a/content/public/test/test_navigation_observer.cc b/content/public/test/test_navigation_observer.cc |
index bfe74f663589ab4719fd6e74a94504f72888fff4..e8955aa31f71ebeeba5c85136fa65b155f3c74e6 100644 |
--- a/content/public/test/test_navigation_observer.cc |
+++ b/content/public/test/test_navigation_observer.cc |
@@ -26,23 +26,23 @@ class TestNavigationObserver::TestWebContentsObserver |
private: |
// WebContentsObserver: |
virtual void NavigationEntryCommitted( |
- const LoadCommittedDetails& load_details) OVERRIDE { |
+ const LoadCommittedDetails& load_details) override { |
parent_->OnNavigationEntryCommitted(this, web_contents(), load_details); |
} |
- virtual void DidAttachInterstitialPage() OVERRIDE { |
+ virtual void DidAttachInterstitialPage() override { |
parent_->OnDidAttachInterstitialPage(web_contents()); |
} |
- virtual void WebContentsDestroyed() OVERRIDE { |
+ virtual void WebContentsDestroyed() override { |
parent_->OnWebContentsDestroyed(this, web_contents()); |
} |
- virtual void DidStartLoading(RenderViewHost* render_view_host) OVERRIDE { |
+ virtual void DidStartLoading(RenderViewHost* render_view_host) override { |
parent_->OnDidStartLoading(web_contents()); |
} |
- virtual void DidStopLoading(RenderViewHost* render_view_host) OVERRIDE { |
+ virtual void DidStopLoading(RenderViewHost* render_view_host) override { |
parent_->OnDidStopLoading(web_contents()); |
} |