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

Unified Diff: chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/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
Index: chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h
diff --git a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h
index bedc0fb8be298e813ac77500e872dcaf877b2678..feed7b52086c4f0f109464bf1e0c27d4f64ad7ac 100644
--- a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h
+++ b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.h
@@ -24,7 +24,7 @@ class ReadingListPrivateAddEntryFunction : public ChromeAsyncExtensionFunction {
virtual ~ReadingListPrivateAddEntryFunction() {}
// ExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
class ReadingListPrivateRemoveEntryFunction
@@ -37,7 +37,7 @@ class ReadingListPrivateRemoveEntryFunction
virtual ~ReadingListPrivateRemoveEntryFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class ReadingListPrivateGetEntriesFunction
@@ -50,7 +50,7 @@ class ReadingListPrivateGetEntriesFunction
virtual ~ReadingListPrivateGetEntriesFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698