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

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

Issue 623133002: replace OVERRIDE and FINAL with override and 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 6e5abadf571878e223e97a6c8859019e0b6978a5..e3bbdc1149b3eeb8f040170884216a4333d8b4ff 100644
--- a/components/keyed_service/content/browser_context_dependency_manager_unittest.cc
+++ b/components/keyed_service/content/browser_context_dependency_manager_unittest.cc
@@ -34,13 +34,13 @@ class TestService : public BrowserContextKeyedServiceFactory {
fill_on_shutdown_(fill_on_shutdown) {}
virtual KeyedService* BuildServiceInstanceFor(
- content::BrowserContext* context) const OVERRIDE {
+ content::BrowserContext* context) const override {
ADD_FAILURE() << "This isn't part of the tests!";
return NULL;
}
virtual void BrowserContextShutdown(content::BrowserContext* context)
- OVERRIDE {
+ override {
fill_on_shutdown_->push_back(name_);
}

Powered by Google App Engine
This is Rietveld 408576698