| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 std::vector<unsigned char> /* audio data */) | 68 std::vector<unsigned char> /* audio data */) |
| 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 WebPreferences /* preferences */) | 78 content::WebPreferences /* preferences */) |
| 79 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_RegisterIsolatedFileSystem, | 79 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_RegisterIsolatedFileSystem, |
| 80 std::vector<base::FilePath> /* absolute_filenames */, | 80 std::vector<base::FilePath> /* absolute_filenames */, |
| 81 std::string /* filesystem_id */) | 81 std::string /* filesystem_id */) |
| 82 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_ReadFileToString, | 82 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_ReadFileToString, |
| 83 base::FilePath /* local path */, | 83 base::FilePath /* local path */, |
| 84 std::string /* contents */) | 84 std::string /* contents */) |
| 85 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, | 85 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, |
| 86 std::string /* message */) | 86 std::string /* message */) |
| 87 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) | 87 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) |
| 88 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, | 88 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 106 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 106 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
| 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
| 108 | 108 |
| 109 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 109 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
| 110 IPC_STRUCT_TRAITS_MEMBER(leaked) | 110 IPC_STRUCT_TRAITS_MEMBER(leaked) |
| 111 IPC_STRUCT_TRAITS_MEMBER(detail) | 111 IPC_STRUCT_TRAITS_MEMBER(detail) |
| 112 IPC_STRUCT_TRAITS_END() | 112 IPC_STRUCT_TRAITS_END() |
| 113 | 113 |
| 114 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 114 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
| 115 content::LeakDetectionResult /* result */) | 115 content::LeakDetectionResult /* result */) |
| OLD | NEW |