| 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 #include "content/browser/appcache/appcache_dispatcher_host.h" | 5 #include "content/browser/appcache/appcache_dispatcher_host.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "content/browser/appcache/chrome_appcache_service.h" | 9 #include "content/browser/appcache/chrome_appcache_service.h" |
| 10 #include "content/common/appcache_messages.h" | 10 #include "content/common/appcache_messages.h" |
| 11 #include "content/public/browser/user_metrics.h" | 11 #include "content/public/browser/user_metrics.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 namespace { |
| 15 const uint32 kFilteredMessageClasses[] = { |
| 16 AppCacheMsgStart |
| 17 }; |
| 18 } // namespace |
| 14 | 19 |
| 15 AppCacheDispatcherHost::AppCacheDispatcherHost( | 20 AppCacheDispatcherHost::AppCacheDispatcherHost( |
| 16 ChromeAppCacheService* appcache_service, | 21 ChromeAppCacheService* appcache_service, |
| 17 int process_id) | 22 int process_id) |
| 18 : appcache_service_(appcache_service), | 23 : BrowserMessageFilter( |
| 24 kFilteredMessageClasses, arraysize(kFilteredMessageClasses)), |
| 25 appcache_service_(appcache_service), |
| 19 frontend_proxy_(this), | 26 frontend_proxy_(this), |
| 20 process_id_(process_id) { | 27 process_id_(process_id) { |
| 21 } | 28 } |
| 22 | 29 |
| 23 void AppCacheDispatcherHost::OnChannelConnected(int32 peer_pid) { | 30 void AppCacheDispatcherHost::OnChannelConnected(int32 peer_pid) { |
| 24 if (appcache_service_.get()) { | 31 if (appcache_service_.get()) { |
| 25 backend_impl_.Initialize( | 32 backend_impl_.Initialize( |
| 26 appcache_service_.get(), &frontend_proxy_, process_id_); | 33 appcache_service_.get(), &frontend_proxy_, process_id_); |
| 27 get_status_callback_ = | 34 get_status_callback_ = |
| 28 base::Bind(&AppCacheDispatcherHost::GetStatusCallback, | 35 base::Bind(&AppCacheDispatcherHost::GetStatusCallback, |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 } | 227 } |
| 221 | 228 |
| 222 void AppCacheDispatcherHost::SwapCacheCallback(bool result, void* param) { | 229 void AppCacheDispatcherHost::SwapCacheCallback(bool result, void* param) { |
| 223 IPC::Message* reply_msg = reinterpret_cast<IPC::Message*>(param); | 230 IPC::Message* reply_msg = reinterpret_cast<IPC::Message*>(param); |
| 224 DCHECK_EQ(pending_reply_msg_.get(), reply_msg); | 231 DCHECK_EQ(pending_reply_msg_.get(), reply_msg); |
| 225 AppCacheHostMsg_SwapCache::WriteReplyParams(reply_msg, result); | 232 AppCacheHostMsg_SwapCache::WriteReplyParams(reply_msg, result); |
| 226 Send(pending_reply_msg_.release()); | 233 Send(pending_reply_msg_.release()); |
| 227 } | 234 } |
| 228 | 235 |
| 229 } // namespace content | 236 } // namespace content |
| OLD | NEW |