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 | 7 |
8 #include "content/public/common/common_param_traits.h" | 8 #include "content/public/common/common_param_traits.h" |
9 #include "content/shell/shell_webpreferences.h" | 9 #include "content/shell/shell_webpreferences.h" |
10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_NotifyDone) | 62 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_NotifyDone) |
63 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpAsText) | 63 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpAsText) |
64 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpChildFramesAsText) | 64 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpChildFramesAsText) |
65 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_SetPrinting) | 65 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_SetPrinting) |
66 IPC_MESSAGE_ROUTED1( | 66 IPC_MESSAGE_ROUTED1( |
67 ShellViewHostMsg_SetShouldStayOnPageAfterHandlingBeforeUnload, | 67 ShellViewHostMsg_SetShouldStayOnPageAfterHandlingBeforeUnload, |
68 bool /* should_stay_on_page */) | 68 bool /* should_stay_on_page */) |
69 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_WaitUntilDone) | 69 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_WaitUntilDone) |
70 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, | 70 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, |
71 content::ShellWebPreferences /* preferences */) | 71 content::ShellWebPreferences /* preferences */) |
72 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CanOpenWindows) | |
73 | 72 |
74 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, | 73 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, |
75 std::string /* object_name */, | 74 std::string /* object_name */, |
76 std::string /* property_name */) | 75 std::string /* property_name */) |
OLD | NEW |