OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "content/common/appcache_interfaces.h" | 11 #include "content/common/appcache_interfaces.h" |
12 #include "ipc/ipc_sender.h" | 12 #include "ipc/ipc_sender.h" |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 | 15 |
16 // Sends appcache related messages to a child process. | 16 // Sends appcache related messages to a child process. |
17 class AppCacheFrontendProxy : public AppCacheFrontend { | 17 class AppCacheFrontendProxy : public AppCacheFrontend { |
18 public: | 18 public: |
19 explicit AppCacheFrontendProxy(IPC::Sender* sender); | 19 explicit AppCacheFrontendProxy(IPC::Sender* sender); |
20 | 20 |
21 // AppCacheFrontend methods | 21 // AppCacheFrontend methods |
22 virtual void OnCacheSelected(int host_id, | 22 void OnCacheSelected(int host_id, const AppCacheInfo& info) override; |
23 const AppCacheInfo& info) override; | 23 void OnStatusChanged(const std::vector<int>& host_ids, |
24 virtual void OnStatusChanged(const std::vector<int>& host_ids, | 24 AppCacheStatus status) override; |
25 AppCacheStatus status) override; | 25 void OnEventRaised(const std::vector<int>& host_ids, |
26 virtual void OnEventRaised(const std::vector<int>& host_ids, | 26 AppCacheEventID event_id) override; |
27 AppCacheEventID event_id) override; | 27 void OnProgressEventRaised(const std::vector<int>& host_ids, |
28 virtual void OnProgressEventRaised(const std::vector<int>& host_ids, | 28 const GURL& url, |
29 const GURL& url, | 29 int num_total, |
30 int num_total, int num_complete) override; | 30 int num_complete) override; |
31 virtual void OnErrorEventRaised(const std::vector<int>& host_ids, | 31 void OnErrorEventRaised(const std::vector<int>& host_ids, |
32 const AppCacheErrorDetails& details) | 32 const AppCacheErrorDetails& details) override; |
33 override; | 33 void OnLogMessage(int host_id, |
34 virtual void OnLogMessage(int host_id, AppCacheLogLevel log_level, | 34 AppCacheLogLevel log_level, |
35 const std::string& message) override; | 35 const std::string& message) override; |
36 virtual void OnContentBlocked(int host_id, | 36 void OnContentBlocked(int host_id, const GURL& manifest_url) override; |
37 const GURL& manifest_url) override; | |
38 | 37 |
39 private: | 38 private: |
40 IPC::Sender* sender_; | 39 IPC::Sender* sender_; |
41 }; | 40 }; |
42 | 41 |
43 } // namespace content | 42 } // namespace content |
44 | 43 |
45 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 44 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
OLD | NEW |