| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_COMMON_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 5 #ifndef CHROME_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
| 6 #define CHROME_COMMON_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 6 #define CHROME_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 |
| 9 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
| 10 #include "webkit/appcache/appcache_interfaces.h" | 11 #include "webkit/appcache/appcache_interfaces.h" |
| 11 | 12 |
| 12 // Sends appcache related messages to a child process. | 13 // Sends appcache related messages to a child process. |
| 13 class AppCacheFrontendProxy : public appcache::AppCacheFrontend { | 14 class AppCacheFrontendProxy : public appcache::AppCacheFrontend { |
| 14 public: | 15 public: |
| 15 AppCacheFrontendProxy() : sender_(NULL) {} | 16 AppCacheFrontendProxy() : sender_(NULL) {} |
| 16 void set_sender(IPC::Message::Sender* sender) { sender_ = sender; } | 17 void set_sender(IPC::Message::Sender* sender) { sender_ = sender; } |
| 17 IPC::Message::Sender* sender() const { return sender_; } | 18 IPC::Message::Sender* sender() const { return sender_; } |
| 18 | 19 |
| 19 // AppCacheFrontend methods | 20 // AppCacheFrontend methods |
| 20 virtual void OnCacheSelected(int host_id, int64 cache_id , | 21 virtual void OnCacheSelected(int host_id, int64 cache_id , |
| 21 appcache::Status); | 22 appcache::Status); |
| 22 virtual void OnStatusChanged(const std::vector<int>& host_ids, | 23 virtual void OnStatusChanged(const std::vector<int>& host_ids, |
| 23 appcache::Status status); | 24 appcache::Status status); |
| 24 virtual void OnEventRaised(const std::vector<int>& host_ids, | 25 virtual void OnEventRaised(const std::vector<int>& host_ids, |
| 25 appcache::EventID event_id); | 26 appcache::EventID event_id); |
| 26 | 27 |
| 27 private: | 28 private: |
| 28 IPC::Message::Sender* sender_; | 29 IPC::Message::Sender* sender_; |
| 29 }; | 30 }; |
| 30 | 31 |
| 31 #endif // CHROME_COMMON_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ | 32 #endif // CHROME_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_ |
| OLD | NEW |