Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Side by Side Diff: content/browser/appcache/appcache_dispatcher_host.cc

Issue 324143002: Decouple IPC::MessageFilter from IPC::Channel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing compilation errors Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 14
15 AppCacheDispatcherHost::AppCacheDispatcherHost( 15 AppCacheDispatcherHost::AppCacheDispatcherHost(
16 ChromeAppCacheService* appcache_service, 16 ChromeAppCacheService* appcache_service,
17 int process_id) 17 int process_id)
18 : BrowserMessageFilter(AppCacheMsgStart), 18 : BrowserMessageFilter(AppCacheMsgStart),
19 appcache_service_(appcache_service), 19 appcache_service_(appcache_service),
20 frontend_proxy_(this), 20 frontend_proxy_(this),
21 process_id_(process_id) { 21 process_id_(process_id) {
22 } 22 }
23 23
24 void AppCacheDispatcherHost::OnChannelConnected(int32 peer_pid) { 24 void AppCacheDispatcherHost::OnSenderConnected() {
25 if (appcache_service_.get()) { 25 if (appcache_service_.get()) {
26 backend_impl_.Initialize( 26 backend_impl_.Initialize(
27 appcache_service_.get(), &frontend_proxy_, process_id_); 27 appcache_service_.get(), &frontend_proxy_, process_id_);
28 get_status_callback_ = 28 get_status_callback_ =
29 base::Bind(&AppCacheDispatcherHost::GetStatusCallback, 29 base::Bind(&AppCacheDispatcherHost::GetStatusCallback,
30 base::Unretained(this)); 30 base::Unretained(this));
31 start_update_callback_ = 31 start_update_callback_ =
32 base::Bind(&AppCacheDispatcherHost::StartUpdateCallback, 32 base::Bind(&AppCacheDispatcherHost::StartUpdateCallback,
33 base::Unretained(this)); 33 base::Unretained(this));
34 swap_cache_callback_ = 34 swap_cache_callback_ =
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 } 220 }
221 221
222 void AppCacheDispatcherHost::SwapCacheCallback(bool result, void* param) { 222 void AppCacheDispatcherHost::SwapCacheCallback(bool result, void* param) {
223 IPC::Message* reply_msg = reinterpret_cast<IPC::Message*>(param); 223 IPC::Message* reply_msg = reinterpret_cast<IPC::Message*>(param);
224 DCHECK_EQ(pending_reply_msg_.get(), reply_msg); 224 DCHECK_EQ(pending_reply_msg_.get(), reply_msg);
225 AppCacheHostMsg_SwapCache::WriteReplyParams(reply_msg, result); 225 AppCacheHostMsg_SwapCache::WriteReplyParams(reply_msg, result);
226 Send(pending_reply_msg_.release()); 226 Send(pending_reply_msg_.release());
227 } 227 }
228 228
229 } // namespace content 229 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698