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

Unified Diff: chrome/browser/ui/search/instant_search_prerenderer_unittest.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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
Index: chrome/browser/ui/search/instant_search_prerenderer_unittest.cc
diff --git a/chrome/browser/ui/search/instant_search_prerenderer_unittest.cc b/chrome/browser/ui/search/instant_search_prerenderer_unittest.cc
index b53a38d3b31e51812e61486a8e46a5ebae6de8aa..bd06fb9eb011b38b01d35dbf4cb643ba99fb3fba 100644
--- a/chrome/browser/ui/search/instant_search_prerenderer_unittest.cc
+++ b/chrome/browser/ui/search/instant_search_prerenderer_unittest.cc
@@ -56,13 +56,13 @@ class DummyPrerenderContents : public PrerenderContents {
bool call_did_finish_load,
const content::SessionStorageNamespaceMap& session_storage_namespace_map);
- virtual void StartPrerendering(
+ void StartPrerendering(
int creator_child_id,
const gfx::Size& size,
content::SessionStorageNamespace* session_storage_namespace,
net::URLRequestContextGetter* request_context) override;
- virtual bool GetChildId(int* child_id) const override;
- virtual bool GetRouteId(int* route_id) const override;
+ bool GetChildId(int* child_id) const override;
+ bool GetRouteId(int* route_id) const override;
private:
Profile* profile_;
@@ -82,7 +82,7 @@ class DummyPrerenderContentsFactory : public PrerenderContents::Factory {
session_storage_namespace_map_(session_storage_namespace_map) {
}
- virtual PrerenderContents* CreatePrerenderContents(
+ PrerenderContents* CreatePrerenderContents(
PrerenderManager* prerender_manager,
Profile* profile,
const GURL& url,

Powered by Google App Engine
This is Rietveld 408576698