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

Unified Diff: content/public/test/test_browser_thread.cc

Issue 629203002: Replace OVERRIDE and FINAL with override and final in content/public/[a-s]* (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 | « content/public/test/test_browser_context.cc ('k') | content/public/test/test_file_error_injector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_browser_thread.cc
diff --git a/content/public/test/test_browser_thread.cc b/content/public/test/test_browser_thread.cc
index b4fc13278c71bea553787841db7801be55ec8c5d..ac3311c497128ef36512a654b6630be649006b41 100644
--- a/content/public/test/test_browser_thread.cc
+++ b/content/public/test/test_browser_thread.cc
@@ -27,12 +27,12 @@ class TestBrowserThreadImpl : public BrowserThreadImpl {
Stop();
}
- virtual void Init() OVERRIDE {
+ virtual void Init() override {
notification_service_ = new NotificationServiceImpl;
BrowserThreadImpl::Init();
}
- virtual void CleanUp() OVERRIDE {
+ virtual void CleanUp() override {
delete notification_service_;
notification_service_ = NULL;
BrowserThreadImpl::CleanUp();
« no previous file with comments | « content/public/test/test_browser_context.cc ('k') | content/public/test/test_file_error_injector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698