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

Unified Diff: extensions/browser/process_manager_unittest.cc

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (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
« no previous file with comments | « extensions/browser/process_manager.cc ('k') | extensions/browser/process_map_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/process_manager_unittest.cc
diff --git a/extensions/browser/process_manager_unittest.cc b/extensions/browser/process_manager_unittest.cc
index e04b0d32eb18ed1ab8b69e238d031d51c0e5df3b..48bc9529c7bee5cd62861008ef62ca0ed44c4dfc 100644
--- a/extensions/browser/process_manager_unittest.cc
+++ b/extensions/browser/process_manager_unittest.cc
@@ -30,7 +30,7 @@ class TestBrowserContextIncognito : public TestBrowserContext {
virtual ~TestBrowserContextIncognito() {}
// TestBrowserContext implementation.
- virtual bool IsOffTheRecord() const OVERRIDE { return true; }
+ virtual bool IsOffTheRecord() const override { return true; }
private:
DISALLOW_COPY_AND_ASSIGN(TestBrowserContextIncognito);
@@ -45,11 +45,11 @@ class TestProcessManagerDelegate : public ProcessManagerDelegate {
virtual ~TestProcessManagerDelegate() {}
// ProcessManagerDelegate implementation.
- virtual bool IsBackgroundPageAllowed(BrowserContext* context) const OVERRIDE {
+ virtual bool IsBackgroundPageAllowed(BrowserContext* context) const override {
return is_background_page_allowed_;
}
virtual bool DeferCreatingStartupBackgroundHosts(
- BrowserContext* context) const OVERRIDE {
+ BrowserContext* context) const override {
return defer_creating_startup_background_hosts_;
}
« no previous file with comments | « extensions/browser/process_manager.cc ('k') | extensions/browser/process_map_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698