| 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 14 matching lines...) Expand all Loading... |
| 25 IPC_STRUCT_TRAITS_MEMBER(initial_size) | 25 IPC_STRUCT_TRAITS_MEMBER(initial_size) |
| 26 IPC_STRUCT_TRAITS_END() | 26 IPC_STRUCT_TRAITS_END() |
| 27 | 27 |
| 28 // Tells the renderer to reset all test runners. | 28 // Tells the renderer to reset all test runners. |
| 29 IPC_MESSAGE_ROUTED0(ShellViewMsg_Reset) | 29 IPC_MESSAGE_ROUTED0(ShellViewMsg_Reset) |
| 30 | 30 |
| 31 // Sets the path to the WebKit checkout. | 31 // Sets the path to the WebKit checkout. |
| 32 IPC_MESSAGE_CONTROL1(ShellViewMsg_SetWebKitSourceDir, | 32 IPC_MESSAGE_CONTROL1(ShellViewMsg_SetWebKitSourceDir, |
| 33 base::FilePath /* webkit source dir */) | 33 base::FilePath /* webkit source dir */) |
| 34 | 34 |
| 35 // Loads the hyphen dictionary used for layout tests. | |
| 36 IPC_MESSAGE_CONTROL1(ShellViewMsg_LoadHyphenDictionary, | |
| 37 IPC::PlatformFileForTransit /* dict_file */) | |
| 38 | |
| 39 // Sets the initial configuration to use for layout tests. | 35 // Sets the initial configuration to use for layout tests. |
| 40 IPC_MESSAGE_ROUTED1(ShellViewMsg_SetTestConfiguration, | 36 IPC_MESSAGE_ROUTED1(ShellViewMsg_SetTestConfiguration, |
| 41 content::ShellTestConfiguration) | 37 content::ShellTestConfiguration) |
| 42 | 38 |
| 43 // Tells the main window that a secondary window in a different process invoked | 39 // Tells the main window that a secondary window in a different process invoked |
| 44 // notifyDone(). | 40 // notifyDone(). |
| 45 IPC_MESSAGE_ROUTED0(ShellViewMsg_NotifyDone) | 41 IPC_MESSAGE_ROUTED0(ShellViewMsg_NotifyDone) |
| 46 | 42 |
| 47 // Pushes a snapshot of the current session history from the browser process. | 43 // Pushes a snapshot of the current session history from the browser process. |
| 48 // This includes only information about those RenderViews that are in the | 44 // This includes only information about those RenderViews that are in the |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) | 91 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) |
| 96 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, | 92 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, |
| 97 int /* quota */) | 93 int /* quota */) |
| 98 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | 94 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
| 99 bool /* accept */) | 95 bool /* accept */) |
| 100 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) | 96 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) |
| 101 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | 97 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, |
| 102 float /* factor */) | 98 float /* factor */) |
| 103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 99 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
| 104 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 100 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
| OLD | NEW |