blob: 9a81dfd1cbc60e4c3d6fd8882fa117e8f3a145c9 (
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
64
65
66
|
// Copyright 2014 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/browser/devtools/devtools_frontend_host_impl.h"
#include "content/common/devtools_messages.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
namespace content {
// static
DevToolsFrontendHost* DevToolsFrontendHost::Create(
RenderViewHost* frontend_rvh,
DevToolsFrontendHost::Delegate* delegate) {
return new DevToolsFrontendHostImpl(frontend_rvh, delegate);
}
DevToolsFrontendHostImpl::DevToolsFrontendHostImpl(
RenderViewHost* frontend_rvh,
DevToolsFrontendHost::Delegate* delegate)
: WebContentsObserver(WebContents::FromRenderViewHost(frontend_rvh)),
delegate_(delegate) {
frontend_rvh->Send(new DevToolsMsg_SetupDevToolsClient(
frontend_rvh->GetRoutingID()));
}
DevToolsFrontendHostImpl::~DevToolsFrontendHostImpl() {
}
void DevToolsFrontendHostImpl::DispatchOnDevToolsFrontend(
const std::string& message) {
if (!web_contents())
return;
RenderViewHost* target_host = web_contents()->GetRenderViewHost();
target_host->Send(new DevToolsClientMsg_DispatchOnInspectorFrontend(
target_host->GetRoutingID(),
message));
}
bool DevToolsFrontendHostImpl::OnMessageReceived(
const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(DevToolsFrontendHostImpl, message)
IPC_MESSAGE_HANDLER(DevToolsAgentMsg_DispatchOnInspectorBackend,
OnDispatchOnInspectorBackend)
IPC_MESSAGE_HANDLER(DevToolsHostMsg_DispatchOnEmbedder,
OnDispatchOnEmbedder)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void DevToolsFrontendHostImpl::OnDispatchOnInspectorBackend(
const std::string& message) {
delegate_->HandleMessageFromDevToolsFrontendToBackend(message);
}
void DevToolsFrontendHostImpl::OnDispatchOnEmbedder(
const std::string& message) {
delegate_->HandleMessageFromDevToolsFrontend(message);
}
} // namespace content
|