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

Side by Side Diff: content/common/child_process_messages.h

Issue 15600006: Cleanup: Remove unneeded gurl.h includes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: remove file Created 7 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
« no previous file with comments | « content/child/webkitplatformsupport_impl.cc ('k') | content/public/test/test_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Common IPC messages used for child processes. 5 // Common IPC messages used for child processes.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/shared_memory.h" 11 #include "base/shared_memory.h"
12 #include "base/tracked_objects.h" 12 #include "base/tracked_objects.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "content/common/content_export.h" 14 #include "content/common/content_export.h"
15 #include "googleurl/src/gurl.h"
16 #include "ipc/ipc_message_macros.h" 15 #include "ipc/ipc_message_macros.h"
17 16
18 IPC_ENUM_TRAITS(tracked_objects::ThreadData::Status) 17 IPC_ENUM_TRAITS(tracked_objects::ThreadData::Status)
19 18
20 IPC_STRUCT_TRAITS_BEGIN(tracked_objects::LocationSnapshot) 19 IPC_STRUCT_TRAITS_BEGIN(tracked_objects::LocationSnapshot)
21 IPC_STRUCT_TRAITS_MEMBER(file_name) 20 IPC_STRUCT_TRAITS_MEMBER(file_name)
22 IPC_STRUCT_TRAITS_MEMBER(function_name) 21 IPC_STRUCT_TRAITS_MEMBER(function_name)
23 IPC_STRUCT_TRAITS_MEMBER(line_number) 22 IPC_STRUCT_TRAITS_MEMBER(line_number)
24 IPC_STRUCT_TRAITS_END() 23 IPC_STRUCT_TRAITS_END()
25 24
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 // fill in and pass back to the browser. 131 // fill in and pass back to the browser.
133 IPC_SYNC_MESSAGE_CONTROL1_1(ChildProcessHostMsg_SyncAllocateSharedMemory, 132 IPC_SYNC_MESSAGE_CONTROL1_1(ChildProcessHostMsg_SyncAllocateSharedMemory,
134 uint32 /* buffer size */, 133 uint32 /* buffer size */,
135 base::SharedMemoryHandle) 134 base::SharedMemoryHandle)
136 135
137 #if defined(USE_TCMALLOC) 136 #if defined(USE_TCMALLOC)
138 // Reply to ChildProcessMsg_GetTcmallocStats. 137 // Reply to ChildProcessMsg_GetTcmallocStats.
139 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, 138 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats,
140 std::string /* output */) 139 std::string /* output */)
141 #endif 140 #endif
OLDNEW
« no previous file with comments | « content/child/webkitplatformsupport_impl.cc ('k') | content/public/test/test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698