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

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

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 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 | « content/common/database_messages.h ('k') | content/common/dom_storage/dom_storage_messages.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 #ifndef CONTENT_COMMON_DEVTOOLS_MESSAGES_H_
6 #define CONTENT_COMMON_DEVTOOLS_MESSAGES_H_
7
5 // Developer tools consist of the following parts: 8 // Developer tools consist of the following parts:
6 // 9 //
7 // DevToolsAgent lives in the renderer of an inspected page and provides access 10 // DevToolsAgent lives in the renderer of an inspected page and provides access
8 // to the pages resources, DOM, v8 etc. by means of IPC messages. 11 // to the pages resources, DOM, v8 etc. by means of IPC messages.
9 // 12 //
10 // DevToolsClient is a thin delegate that lives in the tools front-end 13 // DevToolsClient is a thin delegate that lives in the tools front-end
11 // renderer and converts IPC messages to frontend method calls and allows the 14 // renderer and converts IPC messages to frontend method calls and allows the
12 // frontend to send messages to the DevToolsAgent. 15 // frontend to send messages to the DevToolsAgent.
13 // 16 //
14 // All the messages are routed through browser process. There is a 17 // All the messages are routed through browser process. There is a
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 IPC_MESSAGE_ROUTED1(DevToolsMsg_SetupDevToolsClient, 131 IPC_MESSAGE_ROUTED1(DevToolsMsg_SetupDevToolsClient,
129 std::string /* compatibility script */) 132 std::string /* compatibility script */)
130 133
131 134
132 //----------------------------------------------------------------------------- 135 //-----------------------------------------------------------------------------
133 // These are messages sent from the renderer to the browser. 136 // These are messages sent from the renderer to the browser.
134 137
135 // Transport from Inspector frontend to frontend host. 138 // Transport from Inspector frontend to frontend host.
136 IPC_MESSAGE_ROUTED1(DevToolsHostMsg_DispatchOnEmbedder, 139 IPC_MESSAGE_ROUTED1(DevToolsHostMsg_DispatchOnEmbedder,
137 std::string /* message */) 140 std::string /* message */)
141
142 #endif // CONTENT_COMMON_DEVTOOLS_MESSAGES_H_
OLDNEW
« no previous file with comments | « content/common/database_messages.h ('k') | content/common/dom_storage/dom_storage_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698