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

Unified Diff: chrome/browser/extensions/api/content_settings/content_settings_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/content_settings/content_settings_api.h
diff --git a/chrome/browser/extensions/api/content_settings/content_settings_api.h b/chrome/browser/extensions/api/content_settings/content_settings_api.h
index a138cf39e13a8c62636b4622a29f7fca826bda00..fd904a622119bfc85df435aaafba512a9092cec5 100644
--- a/chrome/browser/extensions/api/content_settings/content_settings_api.h
+++ b/chrome/browser/extensions/api/content_settings/content_settings_api.h
@@ -24,7 +24,7 @@ class ContentSettingsContentSettingClearFunction
virtual ~ContentSettingsContentSettingClearFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class ContentSettingsContentSettingGetFunction
@@ -36,7 +36,7 @@ class ContentSettingsContentSettingGetFunction
virtual ~ContentSettingsContentSettingGetFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class ContentSettingsContentSettingSetFunction
@@ -48,7 +48,7 @@ class ContentSettingsContentSettingSetFunction
virtual ~ContentSettingsContentSettingSetFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class ContentSettingsContentSettingGetResourceIdentifiersFunction
@@ -61,7 +61,7 @@ class ContentSettingsContentSettingGetResourceIdentifiersFunction
virtual ~ContentSettingsContentSettingGetResourceIdentifiersFunction() {}
// ExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
FRIEND_TEST_ALL_PREFIXES(ExtensionApiTest,

Powered by Google App Engine
This is Rietveld 408576698