OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_COMMON_APP_CACHE_APP_CACHE_DISPATCHER_HOST_H_ |
| 6 #define CHROME_COMMON_APP_CACHE_APP_CACHE_DISPATCHER_HOST_H_ |
| 7 |
| 8 #include "base/id_map.h" |
| 9 #include "chrome/common/ipc_message.h" |
| 10 #include "webkit/glue/webappcachecontext.h" |
| 11 |
| 12 class GURL; |
| 13 |
| 14 // Handles app cache related messages sent to the main browser process from |
| 15 // its child processes. There is a distinct host for each child process. |
| 16 // Messages are handled on the IO thread. The ResourceMessageFilter creates |
| 17 // an instance and delegates calls to it. |
| 18 class AppCacheDispatcherHost { |
| 19 public: |
| 20 AppCacheDispatcherHost() : sender_(NULL) {} |
| 21 ~AppCacheDispatcherHost(); |
| 22 void Initialize(IPC::Message::Sender* sender); |
| 23 bool OnMessageReceived(const IPC::Message& msg, bool* msg_is_ok); |
| 24 |
| 25 private: |
| 26 // AppCacheContextImpl related messages |
| 27 void OnContextCreated(WebAppCacheContext::ContextType context_type, |
| 28 int context_id, int opt_parent_id); |
| 29 void OnContextDestroyed(int context_id); |
| 30 void OnSelectAppCache(int context_id, |
| 31 int select_request_id, |
| 32 const GURL& document_url, |
| 33 int64 cache_document_was_loaded_from, |
| 34 const GURL& opt_manifest_url); |
| 35 |
| 36 bool Send(IPC::Message* msg) { |
| 37 return sender_->Send(msg); |
| 38 } |
| 39 |
| 40 IPC::Message::Sender* sender_; |
| 41 }; |
| 42 |
| 43 #endif // CHROME_COMMON_APP_CACHE_APP_CACHE_DISPATCHER_HOST_H_ |
OLD | NEW |