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 "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_RegisterIsolatedFileSystem, | 61 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_RegisterIsolatedFileSystem, |
62 std::vector<base::FilePath> /* absolute_filenames */, | 62 std::vector<base::FilePath> /* absolute_filenames */, |
63 std::string /* filesystem_id */) | 63 std::string /* filesystem_id */) |
64 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_ReadFileToString, | 64 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_ReadFileToString, |
65 base::FilePath /* local path */, | 65 base::FilePath /* local path */, |
66 std::string /* contents */) | 66 std::string /* contents */) |
67 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, | 67 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, |
68 std::string /* message */) | 68 std::string /* message */) |
69 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ShowDevTools) | 69 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ShowDevTools) |
70 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 70 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
| 71 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
| 72 int /* offset */) |
| 73 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) |
| 74 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, |
| 75 GURL /* url */, |
| 76 std::string /* frame_name */) |
71 | 77 |
72 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, | 78 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, |
73 std::string /* object_name */, | 79 std::string /* object_name */, |
74 std::string /* property_name */) | 80 std::string /* property_name */) |
OLD | NEW |