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

Side by Side Diff: content/child/navigator_connect/navigator_connect_dispatcher.cc

Issue 1154283003: Change most uses of Pickle to base::Pickle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/child/navigator_connect/navigator_connect_dispatcher.h" 5 #include "content/child/navigator_connect/navigator_connect_dispatcher.h"
6 6
7 #include "content/child/navigator_connect/navigator_connect_provider.h" 7 #include "content/child/navigator_connect/navigator_connect_provider.h"
8 #include "content/common/navigator_connect_messages.h" 8 #include "content/common/navigator_connect_messages.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 12 matching lines...) Expand all
23 23
24 void NavigatorConnectDispatcher::OnFilteredMessageReceived( 24 void NavigatorConnectDispatcher::OnFilteredMessageReceived(
25 const IPC::Message& msg) { 25 const IPC::Message& msg) {
26 NavigatorConnectProvider::ThreadSpecificInstance( 26 NavigatorConnectProvider::ThreadSpecificInstance(
27 thread_safe_sender(), main_thread_task_runner())->OnMessageReceived(msg); 27 thread_safe_sender(), main_thread_task_runner())->OnMessageReceived(msg);
28 } 28 }
29 29
30 bool NavigatorConnectDispatcher::GetWorkerThreadIdForMessage( 30 bool NavigatorConnectDispatcher::GetWorkerThreadIdForMessage(
31 const IPC::Message& msg, 31 const IPC::Message& msg,
32 int* ipc_thread_id) { 32 int* ipc_thread_id) {
33 return PickleIterator(msg).ReadInt(ipc_thread_id); 33 return base::PickleIterator(msg).ReadInt(ipc_thread_id);
34 } 34 }
35 35
36 } // namespace content 36 } // namespace content
OLDNEW
« no previous file with comments | « content/child/indexed_db/indexed_db_message_filter.cc ('k') | content/child/notifications/notification_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698