blob: ff92aab8fa8b19a1972d3d8d88730c67ae66f764 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/shell/shell_render_view_host_observer.h"
#include <iostream>
#include "base/message_loop.h"
#include "content/browser/renderer_host/render_view_host.h"
#include "content/shell/shell.h"
#include "content/shell/shell_messages.h"
namespace content {
ShellRenderViewHostObserver::ShellRenderViewHostObserver(
RenderViewHost* render_view_host)
: RenderViewHostObserver(render_view_host),
dump_child_frames_(false) {
}
ShellRenderViewHostObserver::~ShellRenderViewHostObserver() {
}
bool ShellRenderViewHostObserver::OnMessageReceived(
const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(ShellRenderViewHostObserver, message)
IPC_MESSAGE_HANDLER(ShellViewHostMsg_TextDump, OnTextDump)
IPC_MESSAGE_HANDLER(ShellViewHostMsg_NotifyDone, OnNotifyDone)
IPC_MESSAGE_HANDLER(ShellViewHostMsg_DumpAsText, OnDumpAsText)
IPC_MESSAGE_HANDLER(ShellViewHostMsg_DumpChildFramesAsText,
OnDumpChildFramesAsText)
IPC_MESSAGE_HANDLER(ShellViewHostMsg_WaitUntilDone, OnWaitUntilDone)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void ShellRenderViewHostObserver::OnTextDump(const std::string& dump) {
std::cout << dump;
MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure());
}
void ShellRenderViewHostObserver::OnNotifyDone() {
render_view_host()->Send(
new ShellViewMsg_CaptureTextDump(render_view_host()->routing_id(),
dump_child_frames_));
}
void ShellRenderViewHostObserver::OnDumpAsText() {
}
void ShellRenderViewHostObserver::OnDumpChildFramesAsText() {
dump_child_frames_ = true;
}
void ShellRenderViewHostObserver::OnWaitUntilDone() {
Shell* shell = Shell::FromRenderViewHost(render_view_host());
shell->set_wait_until_done();
}
} // namespace content
|