| Index: content/browser/appcache/appcache_unittest.cc
|
| diff --git a/content/browser/appcache/appcache_unittest.cc b/content/browser/appcache/appcache_unittest.cc
|
| index 8b9b086f9ff5d6f0192420f32ac229467f767edb..85839d89d50f0c5b8ed39c77bd6e6b7d3459018a 100644
|
| --- a/content/browser/appcache/appcache_unittest.cc
|
| +++ b/content/browser/appcache/appcache_unittest.cc
|
| @@ -13,23 +13,23 @@ namespace {
|
|
|
| class MockAppCacheFrontend : public AppCacheFrontend {
|
| public:
|
| - virtual void OnCacheSelected(int host_id, const AppCacheInfo& info) OVERRIDE {
|
| + virtual void OnCacheSelected(int host_id, const AppCacheInfo& info) override {
|
| }
|
| virtual void OnStatusChanged(const std::vector<int>& host_ids,
|
| - AppCacheStatus status) OVERRIDE {}
|
| + AppCacheStatus status) override {}
|
| virtual void OnEventRaised(const std::vector<int>& host_ids,
|
| - AppCacheEventID event_id) OVERRIDE {}
|
| + AppCacheEventID event_id) override {}
|
| virtual void OnProgressEventRaised(
|
| const std::vector<int>& host_ids,
|
| const GURL& url,
|
| - int num_total, int num_complete) OVERRIDE {}
|
| + int num_total, int num_complete) override {}
|
| virtual void OnErrorEventRaised(
|
| const std::vector<int>& host_ids,
|
| - const AppCacheErrorDetails& details) OVERRIDE {}
|
| + const AppCacheErrorDetails& details) override {}
|
| virtual void OnLogMessage(int host_id, AppCacheLogLevel log_level,
|
| - const std::string& message) OVERRIDE {}
|
| + const std::string& message) override {}
|
| virtual void OnContentBlocked(
|
| - int host_id, const GURL& manifest_url) OVERRIDE {}
|
| + int host_id, const GURL& manifest_url) override {}
|
| };
|
|
|
| } // namespace
|
|
|