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

Unified Diff: components/keyed_service/content/browser_context_dependency_manager_unittest.cc

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/keyed_service/content/browser_context_dependency_manager_unittest.cc
diff --git a/components/keyed_service/content/browser_context_dependency_manager_unittest.cc b/components/keyed_service/content/browser_context_dependency_manager_unittest.cc
index e3bbdc1149b3eeb8f040170884216a4333d8b4ff..fe8e0883ce36709c2d10fcc75fd57b4aa2e47e98 100644
--- a/components/keyed_service/content/browser_context_dependency_manager_unittest.cc
+++ b/components/keyed_service/content/browser_context_dependency_manager_unittest.cc
@@ -33,14 +33,13 @@ class TestService : public BrowserContextKeyedServiceFactory {
name_(name),
fill_on_shutdown_(fill_on_shutdown) {}
- virtual KeyedService* BuildServiceInstanceFor(
+ KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override {
ADD_FAILURE() << "This isn't part of the tests!";
return NULL;
}
- virtual void BrowserContextShutdown(content::BrowserContext* context)
- override {
+ void BrowserContextShutdown(content::BrowserContext* context) override {
fill_on_shutdown_->push_back(name_);
}

Powered by Google App Engine
This is Rietveld 408576698