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

Side by Side Diff: chrome/common/devtools_messages_internal.h

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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
« no previous file with comments | « chrome/common/devtools_messages.h ('k') | chrome/common/extensions/extension_unpacker.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 // Developer tools consist of the following parts: 9 // Developer tools consist of the following parts:
10 // 10 //
(...skipping 24 matching lines...) Expand all
35 // | 35 // |
36 // v 36 // v
37 // --------------------------+-------- 37 // --------------------------+--------
38 // | inspected page <--> DevToolsAgent | 38 // | inspected page <--> DevToolsAgent |
39 // | | 39 // | |
40 // | (inspected page renderer process) | 40 // | (inspected page renderer process) |
41 // ----------------------------------- 41 // -----------------------------------
42 // 42 //
43 // This file describes developer tools message types. 43 // This file describes developer tools message types.
44 44
45 #include "chrome/common/ipc_message_macros.h" 45 #include "ipc/ipc_message_macros.h"
46 46
47 // These are messages sent from DevToolsAgent to DevToolsClient through the 47 // These are messages sent from DevToolsAgent to DevToolsClient through the
48 // browser. 48 // browser.
49 IPC_BEGIN_MESSAGES(DevToolsClient) 49 IPC_BEGIN_MESSAGES(DevToolsClient)
50 50
51 // Sends glue-level Rpc message to the client. 51 // Sends glue-level Rpc message to the client.
52 IPC_MESSAGE_CONTROL3(DevToolsClientMsg_RpcMessage, 52 IPC_MESSAGE_CONTROL3(DevToolsClientMsg_RpcMessage,
53 std::string /* class_name */, 53 std::string /* class_name */,
54 std::string /* method_name */, 54 std::string /* method_name */,
55 std::string /* raw_msg */) 55 std::string /* raw_msg */)
(...skipping 24 matching lines...) Expand all
80 // breakpoint. 80 // breakpoint.
81 IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_DebuggerCommand, 81 IPC_MESSAGE_CONTROL1(DevToolsAgentMsg_DebuggerCommand,
82 std::string /* command */) 82 std::string /* command */)
83 83
84 // Inspect element with the given coordinates. 84 // Inspect element with the given coordinates.
85 IPC_MESSAGE_CONTROL2(DevToolsAgentMsg_InspectElement, 85 IPC_MESSAGE_CONTROL2(DevToolsAgentMsg_InspectElement,
86 int /* x */, 86 int /* x */,
87 int /* y */) 87 int /* y */)
88 88
89 IPC_END_MESSAGES(DevToolsAgent) 89 IPC_END_MESSAGES(DevToolsAgent)
OLDNEW
« no previous file with comments | « chrome/common/devtools_messages.h ('k') | chrome/common/extensions/extension_unpacker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698