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

Unified Diff: chrome/browser/chromeos/extensions/external_cache.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/extensions/external_cache.h
diff --git a/chrome/browser/chromeos/extensions/external_cache.h b/chrome/browser/chromeos/extensions/external_cache.h
index 52c2247425be3e7afe49d4daa00ef18da3baa933..220426f1ceba50ca06de51843861badda07b604b 100644
--- a/chrome/browser/chromeos/extensions/external_cache.h
+++ b/chrome/browser/chromeos/extensions/external_cache.h
@@ -83,14 +83,14 @@ class ExternalCache : public content::NotificationObserver,
// Implementation of content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// Implementation of ExtensionDownloaderDelegate:
virtual void OnExtensionDownloadFailed(
const std::string& id,
Error error,
const PingResult& ping_result,
- const std::set<int>& request_ids) OVERRIDE;
+ const std::set<int>& request_ids) override;
virtual void OnExtensionDownloadFinished(
const std::string& id,
@@ -99,12 +99,12 @@ class ExternalCache : public content::NotificationObserver,
const GURL& download_url,
const std::string& version,
const PingResult& ping_result,
- const std::set<int>& request_ids) OVERRIDE;
+ const std::set<int>& request_ids) override;
- virtual bool IsExtensionPending(const std::string& id) OVERRIDE;
+ virtual bool IsExtensionPending(const std::string& id) override;
virtual bool GetExtensionExistingVersion(const std::string& id,
- std::string* version) OVERRIDE;
+ std::string* version) override;
// Shut down the cache. The |callback| will be invoked when the cache has shut
// down completely and there are no more pending file I/O operations.

Powered by Google App Engine
This is Rietveld 408576698