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

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

Issue 142923005: Allow MessageFilters to restrict listening to specific message classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 10 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
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 : appcache_service_(appcache_service), 18 : BrowserMessageFilter(AppCacheMsgStart),
19 appcache_service_(appcache_service),
19 frontend_proxy_(this), 20 frontend_proxy_(this),
20 process_id_(process_id) { 21 process_id_(process_id) {
21 } 22 }
22 23
23 void AppCacheDispatcherHost::OnChannelConnected(int32 peer_pid) { 24 void AppCacheDispatcherHost::OnChannelConnected(int32 peer_pid) {
24 if (appcache_service_.get()) { 25 if (appcache_service_.get()) {
25 backend_impl_.Initialize( 26 backend_impl_.Initialize(
26 appcache_service_.get(), &frontend_proxy_, process_id_); 27 appcache_service_.get(), &frontend_proxy_, process_id_);
27 get_status_callback_ = 28 get_status_callback_ =
28 base::Bind(&AppCacheDispatcherHost::GetStatusCallback, 29 base::Bind(&AppCacheDispatcherHost::GetStatusCallback,
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 } 221 }
221 222
222 void AppCacheDispatcherHost::SwapCacheCallback(bool result, void* param) { 223 void AppCacheDispatcherHost::SwapCacheCallback(bool result, void* param) {
223 IPC::Message* reply_msg = reinterpret_cast<IPC::Message*>(param); 224 IPC::Message* reply_msg = reinterpret_cast<IPC::Message*>(param);
224 DCHECK_EQ(pending_reply_msg_.get(), reply_msg); 225 DCHECK_EQ(pending_reply_msg_.get(), reply_msg);
225 AppCacheHostMsg_SwapCache::WriteReplyParams(reply_msg, result); 226 AppCacheHostMsg_SwapCache::WriteReplyParams(reply_msg, result);
226 Send(pending_reply_msg_.release()); 227 Send(pending_reply_msg_.release());
227 } 228 }
228 229
229 } // namespace content 230 } // namespace content
OLDNEW
« no previous file with comments | « components/nacl/browser/nacl_host_message_filter.cc ('k') | content/browser/browser_plugin/browser_plugin_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698