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

Side by Side Diff: content/child/appcache/appcache_frontend_impl.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 unified diff | Download patch
« no previous file with comments | « content/child/appcache/appcache_dispatcher.h ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_ 5 #ifndef CONTENT_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
6 #define CONTENT_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_ 6 #define CONTENT_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
7 7
8 #include "content/common/appcache_interfaces.h" 8 #include "content/common/appcache_interfaces.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 class AppCacheFrontendImpl : public AppCacheFrontend { 12 class AppCacheFrontendImpl : public AppCacheFrontend {
13 public: 13 public:
14 virtual void OnCacheSelected(int host_id, 14 void OnCacheSelected(int host_id, const AppCacheInfo& info) override;
15 const AppCacheInfo& info) override; 15 void OnStatusChanged(const std::vector<int>& host_ids,
16 virtual void OnStatusChanged(const std::vector<int>& host_ids, 16 AppCacheStatus status) override;
17 AppCacheStatus status) override; 17 void OnEventRaised(const std::vector<int>& host_ids,
18 virtual void OnEventRaised(const std::vector<int>& host_ids, 18 AppCacheEventID event_id) override;
19 AppCacheEventID event_id) override; 19 void OnProgressEventRaised(const std::vector<int>& host_ids,
20 virtual void OnProgressEventRaised(const std::vector<int>& host_ids, 20 const GURL& url,
21 const GURL& url, 21 int num_total,
22 int num_total, 22 int num_complete) override;
23 int num_complete) override; 23 void OnErrorEventRaised(const std::vector<int>& host_ids,
24 virtual void OnErrorEventRaised(const std::vector<int>& host_ids, 24 const AppCacheErrorDetails& details) override;
25 const AppCacheErrorDetails& details) 25 void OnLogMessage(int host_id,
26 override; 26 AppCacheLogLevel log_level,
27 virtual void OnLogMessage(int host_id, 27 const std::string& message) override;
28 AppCacheLogLevel log_level, 28 void OnContentBlocked(int host_id, const GURL& manifest_url) override;
29 const std::string& message) override;
30 virtual void OnContentBlocked(int host_id, const GURL& manifest_url) override;
31 }; 29 };
32 30
33 } // namespace content 31 } // namespace content
34 32
35 #endif // CONTENT_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_ 33 #endif // CONTENT_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/appcache/appcache_dispatcher.h ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698