| 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.
|
|
|