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 #include "chrome/common/app_cache/app_cache_dispatcher_host.h" |
| 6 |
| 7 #include "chrome/common/render_messages.h" |
| 8 |
| 9 AppCacheDispatcherHost::~AppCacheDispatcherHost() { |
| 10 if (sender_) { |
| 11 // TODO(michaeln): plumb to request_context_->app_cache_service |
| 12 // to remove contexts for the child process that is going away. |
| 13 } |
| 14 } |
| 15 |
| 16 void AppCacheDispatcherHost::Initialize(IPC::Message::Sender* sender) { |
| 17 DCHECK(sender); |
| 18 sender_ = sender; |
| 19 // TODO(michaeln): plumb to request_context_->app_cache_service to |
| 20 // tell it about this child process coming into existance |
| 21 } |
| 22 |
| 23 bool AppCacheDispatcherHost::OnMessageReceived(const IPC::Message& msg, |
| 24 bool *msg_ok) { |
| 25 DCHECK(sender_); |
| 26 *msg_ok = true; |
| 27 bool handled = true; |
| 28 IPC_BEGIN_MESSAGE_MAP_EX(AppCacheDispatcherHost, msg, *msg_ok) |
| 29 IPC_MESSAGE_HANDLER(AppCacheMsg_ContextCreated, OnContextCreated); |
| 30 IPC_MESSAGE_HANDLER(AppCacheMsg_ContextDestroyed, OnContextDestroyed); |
| 31 IPC_MESSAGE_HANDLER(AppCacheMsg_SelectAppCache, OnSelectAppCache); |
| 32 IPC_MESSAGE_UNHANDLED(handled = false) |
| 33 IPC_END_MESSAGE_MAP_EX() |
| 34 return handled; |
| 35 } |
| 36 |
| 37 void AppCacheDispatcherHost::OnContextCreated( |
| 38 WebAppCacheContext::ContextType context_type, |
| 39 int context_id, |
| 40 int opt_parent_id) { |
| 41 // TODO(michaeln): implement me, plumb to request_context->app_cache_service |
| 42 DCHECK(context_id != WebAppCacheContext::kNoAppCacheContextId); |
| 43 } |
| 44 |
| 45 void AppCacheDispatcherHost::OnContextDestroyed(int context_id) { |
| 46 // TODO(michaeln): implement me, plumb to request_context->app_cache_service |
| 47 DCHECK(context_id != WebAppCacheContext::kNoAppCacheContextId); |
| 48 } |
| 49 |
| 50 void AppCacheDispatcherHost::OnSelectAppCache( |
| 51 int context_id, |
| 52 int select_request_id, |
| 53 const GURL& document_url, |
| 54 int64 cache_document_was_loaded_from, |
| 55 const GURL& opt_manifest_url) { |
| 56 // TODO(michaeln): implement me, plumb to request_context->app_cache_service |
| 57 DCHECK(context_id != WebAppCacheContext::kNoAppCacheContextId); |
| 58 Send(new AppCacheMsg_AppCacheSelected(context_id, select_request_id, |
| 59 WebAppCacheContext::kNoAppCacheId)); |
| 60 } |
OLD | NEW |