Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: content/shell/shell_messages.h

Issue 12296007: [content shell] hook up navigation related WebTestDelegate methods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/shell/shell.cc ('k') | content/shell/webkit_test_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 */)
OLDNEW
« no previous file with comments | « content/shell/shell.cc ('k') | content/shell/webkit_test_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698