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.h" |
| 6 |
| 7 #include "chrome/common/app_cache/app_cache_context_impl.h" |
| 8 #include "chrome/common/render_messages.h" |
| 9 |
| 10 bool AppCacheDispatcher::OnMessageReceived(const IPC::Message& msg) { |
| 11 bool handled = true; |
| 12 IPC_BEGIN_MESSAGE_MAP(AppCacheDispatcher, msg) |
| 13 IPC_MESSAGE_HANDLER(AppCacheMsg_AppCacheSelected, OnAppCacheSelected) |
| 14 IPC_MESSAGE_UNHANDLED(handled = false) |
| 15 IPC_END_MESSAGE_MAP() |
| 16 return handled; |
| 17 } |
| 18 |
| 19 void AppCacheDispatcher::OnAppCacheSelected(int context_id, |
| 20 int select_request_id, |
| 21 int64 app_cache_id) { |
| 22 AppCacheContextImpl *context = AppCacheContextImpl::FromContextId(context_id); |
| 23 if (context) { |
| 24 context->OnAppCacheSelected(select_request_id, app_cache_id); |
| 25 } |
| 26 } |
OLD | NEW |