| 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 | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
| 22   virtual void OnCacheSelected(int host_id, | 22   virtual void OnCacheSelected(int host_id, | 
| 23                                const appcache::AppCacheInfo& info) OVERRIDE; | 23                                const appcache::AppCacheInfo& info) OVERRIDE; | 
| 24   virtual void OnStatusChanged(const std::vector<int>& host_ids, | 24   virtual void OnStatusChanged(const std::vector<int>& host_ids, | 
| 25                                appcache::Status status) OVERRIDE; | 25                                appcache::Status status) OVERRIDE; | 
| 26   virtual void OnEventRaised(const std::vector<int>& host_ids, | 26   virtual void OnEventRaised(const std::vector<int>& host_ids, | 
| 27                              appcache::EventID event_id) OVERRIDE; | 27                              appcache::EventID event_id) OVERRIDE; | 
| 28   virtual void OnProgressEventRaised(const std::vector<int>& host_ids, | 28   virtual void OnProgressEventRaised(const std::vector<int>& host_ids, | 
| 29                                      const GURL& url, | 29                                      const GURL& url, | 
| 30                                      int num_total, int num_complete) OVERRIDE; | 30                                      int num_total, int num_complete) OVERRIDE; | 
| 31   virtual void OnErrorEventRaised(const std::vector<int>& host_ids, | 31   virtual void OnErrorEventRaised(const std::vector<int>& host_ids, | 
| 32                                   const std::string& message) OVERRIDE; | 32                                   const std::string& message, | 
|  | 33                                   appcache::ErrorReason reason, | 
|  | 34                                   const GURL& url, | 
|  | 35                                   int status) OVERRIDE; | 
| 33   virtual void OnLogMessage(int host_id, appcache::LogLevel log_level, | 36   virtual void OnLogMessage(int host_id, appcache::LogLevel log_level, | 
| 34                             const std::string& message) OVERRIDE; | 37                             const std::string& message) OVERRIDE; | 
| 35   virtual void OnContentBlocked(int host_id, | 38   virtual void OnContentBlocked(int host_id, | 
| 36                                 const GURL& manifest_url) OVERRIDE; | 39                                 const GURL& manifest_url) OVERRIDE; | 
| 37 | 40 | 
| 38  private: | 41  private: | 
| 39   IPC::Sender* sender_; | 42   IPC::Sender* sender_; | 
| 40 }; | 43 }; | 
| 41 | 44 | 
| 42 }  // namespace content | 45 }  // namespace content | 
| 43 | 46 | 
| 44 #endif  // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 47 #endif  // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 
| OLD | NEW | 
|---|