| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinished) | 70 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinished) |
| 71 | 71 |
| 72 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ResetDone) | 72 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ResetDone) |
| 73 | 73 |
| 74 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinishedInSecondaryWindow) | 74 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinishedInSecondaryWindow) |
| 75 | 75 |
| 76 // WebTestDelegate related. | 76 // WebTestDelegate related. |
| 77 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, | 77 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, |
| 78 content::WebPreferences /* preferences */) | 78 content::WebPreferences /* preferences */) |
| 79 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_RegisterIsolatedFileSystem, | |
| 80 std::vector<base::FilePath> /* absolute_filenames */, | |
| 81 std::string /* filesystem_id */) | |
| 82 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_ReadFileToString, | |
| 83 base::FilePath /* local path */, | |
| 84 std::string /* contents */) | |
| 85 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, | 79 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, |
| 86 std::string /* message */) | 80 std::string /* message */) |
| 87 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) | 81 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) |
| 88 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, | 82 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, |
| 89 std::string /* settings */, | 83 std::string /* settings */, |
| 90 std::string /* frontend_url */) | 84 std::string /* frontend_url */) |
| 91 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 85 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
| 92 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, | 86 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
| 93 int /* offset */) | 87 int /* offset */) |
| 94 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) | 88 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) |
| 95 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, | 89 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, |
| 96 GURL /* url */, | 90 GURL /* url */, |
| 97 std::string /* frame_name */) | 91 std::string /* frame_name */) |
| 98 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) | |
| 99 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, | |
| 100 int /* quota */) | |
| 101 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_CheckWebNotificationPermission, | |
| 102 GURL /* origin */, | |
| 103 int /* result */) | |
| 104 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_GrantWebNotificationPermission, | |
| 105 GURL /* origin */, | |
| 106 bool /* permission_granted */) | |
| 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearWebNotificationPermissions) | |
| 108 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SimulateWebNotificationClick, | |
| 109 std::string /* title */) | |
| 110 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | |
| 111 bool /* accept */) | |
| 112 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) | |
| 113 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | 92 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, |
| 114 float /* factor */) | 93 float /* factor */) |
| 115 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 94 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
| 116 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 95 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
| 117 | 96 |
| 118 IPC_MESSAGE_CONTROL3(ShellViewHostMsg_EchoPing, | 97 IPC_MESSAGE_CONTROL3(ShellViewHostMsg_EchoPing, |
| 119 int /* routing_id */, | 98 int /* routing_id */, |
| 120 int /* id */, | 99 int /* id */, |
| 121 std::string /* body */) | 100 std::string /* body */) |
| 122 IPC_MESSAGE_ROUTED2(ShellViewMsg_EchoPong, | 101 IPC_MESSAGE_ROUTED2(ShellViewMsg_EchoPong, |
| 123 int /* id */, | 102 int /* id */, |
| 124 std::string /* body */) | 103 std::string /* body */) |
| 125 | 104 |
| 126 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 105 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
| 127 IPC_STRUCT_TRAITS_MEMBER(leaked) | 106 IPC_STRUCT_TRAITS_MEMBER(leaked) |
| 128 IPC_STRUCT_TRAITS_MEMBER(detail) | 107 IPC_STRUCT_TRAITS_MEMBER(detail) |
| 129 IPC_STRUCT_TRAITS_END() | 108 IPC_STRUCT_TRAITS_END() |
| 130 | 109 |
| 131 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 110 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
| 132 content::LeakDetectionResult /* result */) | 111 content::LeakDetectionResult /* result */) |
| OLD | NEW |