| OLD | NEW |
| 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 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 // Attaches dev tools window that is inspecting current render_view_host. | 1400 // Attaches dev tools window that is inspecting current render_view_host. |
| 1401 IPC_MESSAGE_ROUTED0(ViewHostMsg_DockDevToolsWindow) | 1401 IPC_MESSAGE_ROUTED0(ViewHostMsg_DockDevToolsWindow) |
| 1402 | 1402 |
| 1403 // Detaches dev tools window that is inspecting current render_view_host. | 1403 // Detaches dev tools window that is inspecting current render_view_host. |
| 1404 IPC_MESSAGE_ROUTED0(ViewHostMsg_UndockDevToolsWindow) | 1404 IPC_MESSAGE_ROUTED0(ViewHostMsg_UndockDevToolsWindow) |
| 1405 | 1405 |
| 1406 // Detaches dev tools window that is inspecting current render_view_host. | 1406 // Detaches dev tools window that is inspecting current render_view_host. |
| 1407 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleInspectElementMode, | 1407 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleInspectElementMode, |
| 1408 bool /* enabled */) | 1408 bool /* enabled */) |
| 1409 | 1409 |
| 1410 // Updates runtime features store in devtools manager in order to support |
| 1411 // cross-navigation instrumentation. |
| 1412 IPC_MESSAGE_ROUTED2(ViewHostMsg_DevToolsRuntimeFeatureStateChanged, |
| 1413 std::string /* feature */, |
| 1414 bool /* enabled */) |
| 1415 |
| 1410 // Send back a string to be recorded by UserMetrics. | 1416 // Send back a string to be recorded by UserMetrics. |
| 1411 IPC_MESSAGE_ROUTED1(ViewHostMsg_UserMetricsRecordAction, | 1417 IPC_MESSAGE_ROUTED1(ViewHostMsg_UserMetricsRecordAction, |
| 1412 std::wstring /* action */) | 1418 std::wstring /* action */) |
| 1413 | 1419 |
| 1414 // Send back histograms as vector of pickled-histogram strings. | 1420 // Send back histograms as vector of pickled-histogram strings. |
| 1415 IPC_MESSAGE_CONTROL2(ViewHostMsg_RendererHistograms, | 1421 IPC_MESSAGE_CONTROL2(ViewHostMsg_RendererHistograms, |
| 1416 int, /* sequence number of Renderer Histograms. */ | 1422 int, /* sequence number of Renderer Histograms. */ |
| 1417 std::vector<std::string>) | 1423 std::vector<std::string>) |
| 1418 | 1424 |
| 1419 #if defined USE_TCMALLOC | 1425 #if defined USE_TCMALLOC |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1976 | 1982 |
| 1977 // Asks the browser process to generate a keypair for grabbing a client | 1983 // Asks the browser process to generate a keypair for grabbing a client |
| 1978 // certificate from a CA (<keygen> tag), and returns the signed public | 1984 // certificate from a CA (<keygen> tag), and returns the signed public |
| 1979 // key and challenge string. | 1985 // key and challenge string. |
| 1980 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, | 1986 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, |
| 1981 uint32 /* key size index */, | 1987 uint32 /* key size index */, |
| 1982 std::string /* challenge string */, | 1988 std::string /* challenge string */, |
| 1983 GURL /* URL of requestor */, | 1989 GURL /* URL of requestor */, |
| 1984 std::string /* signed public key and challenge */) | 1990 std::string /* signed public key and challenge */) |
| 1985 IPC_END_MESSAGES(ViewHost) | 1991 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |