| OLD | NEW | 
|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 1548 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1559   IPC_MESSAGE_ROUTED1(ViewHostMsg_ForwardToDevToolsAgent, | 1559   IPC_MESSAGE_ROUTED1(ViewHostMsg_ForwardToDevToolsAgent, | 
| 1560                       IPC::Message /* one of DevToolsAgentMsg_XXX types */) | 1560                       IPC::Message /* one of DevToolsAgentMsg_XXX types */) | 
| 1561 | 1561 | 
| 1562   // Activates (brings to the front) corresponding dev tools window. | 1562   // Activates (brings to the front) corresponding dev tools window. | 
| 1563   IPC_MESSAGE_ROUTED0(ViewHostMsg_ActivateDevToolsWindow) | 1563   IPC_MESSAGE_ROUTED0(ViewHostMsg_ActivateDevToolsWindow) | 
| 1564 | 1564 | 
| 1565   // Closes dev tools window that is inspecting current render_view_host. | 1565   // Closes dev tools window that is inspecting current render_view_host. | 
| 1566   IPC_MESSAGE_ROUTED0(ViewHostMsg_CloseDevToolsWindow) | 1566   IPC_MESSAGE_ROUTED0(ViewHostMsg_CloseDevToolsWindow) | 
| 1567 | 1567 | 
| 1568   // Attaches dev tools window that is inspecting current render_view_host. | 1568   // Attaches dev tools window that is inspecting current render_view_host. | 
| 1569   IPC_MESSAGE_ROUTED0(ViewHostMsg_DockDevToolsWindow) | 1569   IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestDockDevToolsWindow) | 
| 1570 | 1570 | 
| 1571   // Detaches dev tools window that is inspecting current render_view_host. | 1571   // Detaches dev tools window that is inspecting current render_view_host. | 
| 1572   IPC_MESSAGE_ROUTED0(ViewHostMsg_UndockDevToolsWindow) | 1572   IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestUndockDevToolsWindow) | 
| 1573 | 1573 | 
| 1574   // Updates runtime features store in devtools manager in order to support | 1574   // Updates runtime features store in devtools manager in order to support | 
| 1575   // cross-navigation instrumentation. | 1575   // cross-navigation instrumentation. | 
| 1576   IPC_MESSAGE_ROUTED2(ViewHostMsg_DevToolsRuntimeFeatureStateChanged, | 1576   IPC_MESSAGE_ROUTED2(ViewHostMsg_DevToolsRuntimeFeatureStateChanged, | 
| 1577                       std::string /* feature */, | 1577                       std::string /* feature */, | 
| 1578                       bool /* enabled */) | 1578                       bool /* enabled */) | 
| 1579 | 1579 | 
| 1580   // Send back a string to be recorded by UserMetrics. | 1580   // Send back a string to be recorded by UserMetrics. | 
| 1581   IPC_MESSAGE_ROUTED1(ViewHostMsg_UserMetricsRecordAction, | 1581   IPC_MESSAGE_ROUTED1(ViewHostMsg_UserMetricsRecordAction, | 
| 1582                       std::string /* action */) | 1582                       std::string /* action */) | 
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2300                        int /* render_view_id */, | 2300                        int /* render_view_id */, | 
| 2301                        int /* bridge_id */) | 2301                        int /* bridge_id */) | 
| 2302 | 2302 | 
| 2303   // The |render_view_id| and |bridge_id| requests Geolocation service to | 2303   // The |render_view_id| and |bridge_id| requests Geolocation service to | 
| 2304   // resume. | 2304   // resume. | 
| 2305   IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2305   IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 
| 2306                        int /* render_view_id */, | 2306                        int /* render_view_id */, | 
| 2307                        int /* bridge_id */) | 2307                        int /* bridge_id */) | 
| 2308 | 2308 | 
| 2309 IPC_END_MESSAGES(ViewHost) | 2309 IPC_END_MESSAGES(ViewHost) | 
| OLD | NEW | 
|---|