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

Unified Diff: content/browser/appcache/appcache_frontend_proxy.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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: content/browser/appcache/appcache_frontend_proxy.h
diff --git a/content/browser/appcache/appcache_frontend_proxy.h b/content/browser/appcache/appcache_frontend_proxy.h
index f16a423fc7a2077832b9a580221fd5612495c175..03592ee4c45a2f0c4587404b711af4ff8784734f 100644
--- a/content/browser/appcache/appcache_frontend_proxy.h
+++ b/content/browser/appcache/appcache_frontend_proxy.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -18,20 +18,21 @@ class AppCacheFrontendProxy : public appcache::AppCacheFrontend {
explicit AppCacheFrontendProxy(IPC::Message::Sender* sender);
// AppCacheFrontend methods
- virtual void OnCacheSelected(int host_id, const appcache::AppCacheInfo& info);
+ virtual void OnCacheSelected(int host_id,
+ const appcache::AppCacheInfo& info) OVERRIDE;
virtual void OnStatusChanged(const std::vector<int>& host_ids,
- appcache::Status status);
+ appcache::Status status) OVERRIDE;
virtual void OnEventRaised(const std::vector<int>& host_ids,
- appcache::EventID event_id);
+ appcache::EventID event_id) OVERRIDE;
virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
const GURL& url,
- int num_total, int num_complete);
+ int num_total, int num_complete) OVERRIDE;
virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
- const std::string& message);
+ const std::string& message) OVERRIDE;
virtual void OnLogMessage(int host_id, appcache::LogLevel log_level,
- const std::string& message);
+ const std::string& message) OVERRIDE;
virtual void OnContentBlocked(int host_id,
- const GURL& manifest_url);
+ const GURL& manifest_url) OVERRIDE;
private:
IPC::Message::Sender* sender_;
« no previous file with comments | « content/browser/appcache/appcache_dispatcher_host.h ('k') | content/browser/appcache/chrome_appcache_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698