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

Unified Diff: chrome/browser/profiles/profile_manager_unittest.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/profiles/profile_manager_unittest.cc
diff --git a/chrome/browser/profiles/profile_manager_unittest.cc b/chrome/browser/profiles/profile_manager_unittest.cc
index 45beab1d8cc762450ca8214b303d53bc77f4c3a1..c965a6f80ea278f5c76fe799c8029e945cbba309 100644
--- a/chrome/browser/profiles/profile_manager_unittest.cc
+++ b/chrome/browser/profiles/profile_manager_unittest.cc
@@ -72,7 +72,7 @@ class UnittestProfileManager : public ::ProfileManagerWithoutInit {
protected:
virtual Profile* CreateProfileHelper(
- const base::FilePath& file_path) OVERRIDE {
+ const base::FilePath& file_path) override {
if (!base::PathExists(file_path)) {
if (!base::CreateDirectory(file_path))
return NULL;
@@ -81,7 +81,7 @@ class UnittestProfileManager : public ::ProfileManagerWithoutInit {
}
virtual Profile* CreateProfileAsyncHelper(const base::FilePath& path,
- Delegate* delegate) OVERRIDE {
+ Delegate* delegate) override {
// This is safe while all file operations are done on the FILE thread.
BrowserThread::PostTask(
BrowserThread::FILE, FROM_HERE,
@@ -393,7 +393,7 @@ class UnittestGuestProfileManager : public UnittestProfileManager {
protected:
virtual Profile* CreateProfileHelper(
- const base::FilePath& file_path) OVERRIDE {
+ const base::FilePath& file_path) override {
TestingProfile::Builder builder;
builder.SetGuestSession();
builder.SetPath(file_path);

Powered by Google App Engine
This is Rietveld 408576698