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 e8955aa31f71ebeeba5c85136fa65b155f3c74e6..f9dd375ab31228dd0d55ea6857479645e2a58a58 100644 |
--- a/content/public/test/test_navigation_observer.cc |
+++ b/content/public/test/test_navigation_observer.cc |
@@ -25,24 +25,24 @@ class TestNavigationObserver::TestWebContentsObserver |
private: |
// WebContentsObserver: |
- virtual void NavigationEntryCommitted( |
+ void NavigationEntryCommitted( |
const LoadCommittedDetails& load_details) override { |
parent_->OnNavigationEntryCommitted(this, web_contents(), load_details); |
} |
- virtual void DidAttachInterstitialPage() override { |
+ void DidAttachInterstitialPage() override { |
parent_->OnDidAttachInterstitialPage(web_contents()); |
} |
- virtual void WebContentsDestroyed() override { |
+ void WebContentsDestroyed() override { |
parent_->OnWebContentsDestroyed(this, web_contents()); |
} |
- virtual void DidStartLoading(RenderViewHost* render_view_host) override { |
+ void DidStartLoading(RenderViewHost* render_view_host) override { |
parent_->OnDidStartLoading(web_contents()); |
} |
- virtual void DidStopLoading(RenderViewHost* render_view_host) override { |
+ void DidStopLoading(RenderViewHost* render_view_host) override { |
parent_->OnDidStopLoading(web_contents()); |
} |