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

Unified Diff: chrome/browser/ui/app_list/search/webstore/webstore_result.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[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
Index: chrome/browser/ui/app_list/search/webstore/webstore_result.h
diff --git a/chrome/browser/ui/app_list/search/webstore/webstore_result.h b/chrome/browser/ui/app_list/search/webstore/webstore_result.h
index 25f32f5652523065568403bfdb5421b636f80027..a918922c21bbf078971804686a5464e8135d5e92 100644
--- a/chrome/browser/ui/app_list/search/webstore/webstore_result.h
+++ b/chrome/browser/ui/app_list/search/webstore/webstore_result.h
@@ -45,10 +45,10 @@ class WebstoreResult : public ChromeSearchResult,
bool is_paid() const { return is_paid_; }
// ChromeSearchResult overides:
- virtual void Open(int event_flags) OVERRIDE;
- virtual void InvokeAction(int action_index, int event_flags) OVERRIDE;
- virtual scoped_ptr<ChromeSearchResult> Duplicate() OVERRIDE;
- virtual ChromeSearchResultType GetType() OVERRIDE;
+ virtual void Open(int event_flags) override;
+ virtual void InvokeAction(int action_index, int event_flags) override;
+ virtual scoped_ptr<ChromeSearchResult> Duplicate() override;
+ virtual ChromeSearchResultType GetType() override;
private:
// Set the initial state and start observing both InstallObserver and
@@ -71,15 +71,15 @@ class WebstoreResult : public ChromeSearchResult,
// extensions::InstallObserver overrides:
virtual void OnDownloadProgress(const std::string& extension_id,
- int percent_downloaded) OVERRIDE;
- virtual void OnShutdown() OVERRIDE;
+ int percent_downloaded) override;
+ virtual void OnShutdown() override;
// extensions::ExtensionRegistryObserver overides:
virtual void OnExtensionInstalled(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
- bool is_update) OVERRIDE;
- virtual void OnShutdown(extensions::ExtensionRegistry* registry) OVERRIDE;
+ bool is_update) override;
+ virtual void OnShutdown(extensions::ExtensionRegistry* registry) override;
Profile* profile_;
const std::string app_id_;

Powered by Google App Engine
This is Rietveld 408576698