diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-30 22:27:04 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-30 22:27:04 +0000 |
commit | 74830f079e4a4417c3a8c87cfd993b1cfaefadf8 (patch) | |
tree | ced0f3613c7e2449f8a32deaa6db3d763f69eb24 /content/shell/shell_messages.h | |
parent | 130f02d464be38e03c259fc9f06be9c78596f9c5 (diff) | |
download | chromium_src-74830f079e4a4417c3a8c87cfd993b1cfaefadf8.zip chromium_src-74830f079e4a4417c3a8c87cfd993b1cfaefadf8.tar.gz chromium_src-74830f079e4a4417c3a8c87cfd993b1cfaefadf8.tar.bz2 |
First version of the layoutTestController for content_shell
This version supports dumpAsText, dumpChildFramesAsText, waitUntilDone, and
notifyDone
BUG=111316
TEST=run content_shell --dump-render-tree <some layout test that only uses above functions>
Review URL: http://codereview.chromium.org/9121074
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119750 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/shell_messages.h')
-rw-r--r-- | content/shell/shell_messages.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/shell/shell_messages.h b/content/shell/shell_messages.h index 5e3c741..3d86a47 100644 --- a/content/shell/shell_messages.h +++ b/content/shell/shell_messages.h @@ -17,3 +17,9 @@ IPC_MESSAGE_ROUTED1(ShellViewMsg_CaptureTextDump, // Send a text dump of the tab contents to the render host. IPC_MESSAGE_ROUTED1(ShellViewHostMsg_TextDump, std::string /* dump */) + +// The following messages correspond to methods of the layoutTestController. +IPC_MESSAGE_ROUTED0(ShellViewHostMsg_NotifyDone) +IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpAsText) +IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DumpChildFramesAsText) +IPC_MESSAGE_ROUTED0(ShellViewHostMsg_WaitUntilDone) |