| 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 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1396 | 1396 |
| 1397 // Closes dev tools window that is inspecting current render_view_host. | 1397 // Closes dev tools window that is inspecting current render_view_host. |
| 1398 IPC_MESSAGE_ROUTED0(ViewHostMsg_CloseDevToolsWindow) | 1398 IPC_MESSAGE_ROUTED0(ViewHostMsg_CloseDevToolsWindow) |
| 1399 | 1399 |
| 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. | |
| 1407 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleInspectElementMode, | |
| 1408 bool /* enabled */) | |
| 1409 | |
| 1410 // Updates runtime features store in devtools manager in order to support | 1406 // Updates runtime features store in devtools manager in order to support |
| 1411 // cross-navigation instrumentation. | 1407 // cross-navigation instrumentation. |
| 1412 IPC_MESSAGE_ROUTED2(ViewHostMsg_DevToolsRuntimeFeatureStateChanged, | 1408 IPC_MESSAGE_ROUTED2(ViewHostMsg_DevToolsRuntimeFeatureStateChanged, |
| 1413 std::string /* feature */, | 1409 std::string /* feature */, |
| 1414 bool /* enabled */) | 1410 bool /* enabled */) |
| 1415 | 1411 |
| 1416 // Send back a string to be recorded by UserMetrics. | 1412 // Send back a string to be recorded by UserMetrics. |
| 1417 IPC_MESSAGE_ROUTED1(ViewHostMsg_UserMetricsRecordAction, | 1413 IPC_MESSAGE_ROUTED1(ViewHostMsg_UserMetricsRecordAction, |
| 1418 std::wstring /* action */) | 1414 std::wstring /* action */) |
| 1419 | 1415 |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1982 | 1978 |
| 1983 // Asks the browser process to generate a keypair for grabbing a client | 1979 // Asks the browser process to generate a keypair for grabbing a client |
| 1984 // certificate from a CA (<keygen> tag), and returns the signed public | 1980 // certificate from a CA (<keygen> tag), and returns the signed public |
| 1985 // key and challenge string. | 1981 // key and challenge string. |
| 1986 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, | 1982 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, |
| 1987 uint32 /* key size index */, | 1983 uint32 /* key size index */, |
| 1988 std::string /* challenge string */, | 1984 std::string /* challenge string */, |
| 1989 GURL /* URL of requestor */, | 1985 GURL /* URL of requestor */, |
| 1990 std::string /* signed public key and challenge */) | 1986 std::string /* signed public key and challenge */) |
| 1991 IPC_END_MESSAGES(ViewHost) | 1987 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |