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

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

Issue 10827182: Rename layoutTestController to testRunner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 8 years, 4 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/layout_test_controller_host.h ('k') | content/test/layout_browsertest.cc » ('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 7
8 #include "content/public/common/common_param_traits.h" 8 #include "content/public/common/common_param_traits.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 #include "third_party/skia/include/core/SkBitmap.h" 10 #include "third_party/skia/include/core/SkBitmap.h"
(...skipping 17 matching lines...) Expand all
28 std::string /* dump */) 28 std::string /* dump */)
29 29
30 // Send an image dump of the WebContents to the render host. 30 // Send an image dump of the WebContents to the render host.
31 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ImageDump, 31 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ImageDump,
32 std::string /* actual pixel hash */, 32 std::string /* actual pixel hash */,
33 SkBitmap /* image */) 33 SkBitmap /* image */)
34 34
35 // The main frame of the render view finished loading. 35 // The main frame of the render view finished loading.
36 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DidFinishLoad) 36 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DidFinishLoad)
37 37
38 // The following messages correspond to methods of the layoutTestController. 38 // The following messages correspond to methods of the testRunner.
39 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_NotifyDone) 39 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_NotifyDone)
40 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpAsText) 40 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpAsText)
41 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpChildFramesAsText) 41 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpChildFramesAsText)
42 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_SetPrinting) 42 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_SetPrinting)
43 IPC_MESSAGE_ROUTED1( 43 IPC_MESSAGE_ROUTED1(
44 ShellViewHostMsg_SetShouldStayOnPageAfterHandlingBeforeUnload, 44 ShellViewHostMsg_SetShouldStayOnPageAfterHandlingBeforeUnload,
45 bool /* should_stay_on_page */) 45 bool /* should_stay_on_page */)
46 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_WaitUntilDone) 46 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_WaitUntilDone)
47 47
48 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, 48 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented,
49 std::string /* object_name */, 49 std::string /* object_name */,
50 std::string /* property_name */) 50 std::string /* property_name */)
OLDNEW
« no previous file with comments | « content/shell/layout_test_controller_host.h ('k') | content/test/layout_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698