| OLD | NEW |
| 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "content/public/common/common_param_traits.h" | 9 #include "content/public/common/common_param_traits.h" |
| 10 #include "content/public/common/page_state.h" | 10 #include "content/public/common/page_state.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, | 82 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, |
| 83 std::string /* settings */, | 83 std::string /* settings */, |
| 84 std::string /* frontend_url */) | 84 std::string /* frontend_url */) |
| 85 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 85 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
| 86 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, | 86 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
| 87 int /* offset */) | 87 int /* offset */) |
| 88 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) | 88 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) |
| 89 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, | 89 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, |
| 90 GURL /* url */, | 90 GURL /* url */, |
| 91 std::string /* frame_name */) | 91 std::string /* frame_name */) |
| 92 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | |
| 93 float /* factor */) | |
| 94 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 92 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
| 95 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 93 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
| 96 | 94 |
| 97 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 95 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
| 98 IPC_STRUCT_TRAITS_MEMBER(leaked) | 96 IPC_STRUCT_TRAITS_MEMBER(leaked) |
| 99 IPC_STRUCT_TRAITS_MEMBER(detail) | 97 IPC_STRUCT_TRAITS_MEMBER(detail) |
| 100 IPC_STRUCT_TRAITS_END() | 98 IPC_STRUCT_TRAITS_END() |
| 101 | 99 |
| 102 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 100 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
| 103 content::LeakDetectionResult /* result */) | 101 content::LeakDetectionResult /* result */) |
| 104 | 102 |
| 105 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, | 103 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, |
| 106 bool /* enable */) | 104 bool /* enable */) |
| 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) | 105 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) |
| 108 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, | 106 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, |
| 109 std::vector<std::string> /* events */) | 107 std::vector<std::string> /* events */) |
| 110 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, | 108 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, |
| 111 std::string /* event */, | 109 std::string /* event */, |
| 112 std::string /* argument */) | 110 std::string /* argument */) |
| OLD | NEW |