blob: deaa2f1a8e8179709adcb42f7d5b6efa93b11569 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
// Copyright 2015 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.
#ifndef COMPONENTS_WEB_VIEW_FRAME_DEVTOOLS_AGENT_H_
#define COMPONENTS_WEB_VIEW_FRAME_DEVTOOLS_AGENT_H_
#include <map>
#include <string>
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "components/devtools_service/public/interfaces/devtools_service.mojom.h"
#include "components/web_view/frame.h"
#include "mojo/public/cpp/bindings/binding.h"
namespace base {
class DictionaryValue;
}
namespace mojo {
class ApplicationImpl;
}
namespace web_view {
class FrameDevToolsAgentDelegate;
// FrameDevToolsAgent relays messages between the DevTools service and the
// DevTools agent of the frame that it attaches to.
// It persists state across frame navigations and also intercepts
// "Page.navigate" requests.
class FrameDevToolsAgent : public devtools_service::DevToolsAgent {
public:
FrameDevToolsAgent(mojo::ApplicationImpl* app,
FrameDevToolsAgentDelegate* delegate);
~FrameDevToolsAgent() override;
// Attaches this agent to a new frame. |forward_agent| is the DevToolsAgent
// interface provided by the frame. DevTools-related properties are added to
// |devtools_properties|, which should be passed to the frame to initialize
// its DevTools agent.
void AttachFrame(devtools_service::DevToolsAgentPtr forward_agent,
Frame::ClientPropertyMap* devtools_properties);
private:
class FrameDevToolsAgentClient;
void RegisterAgentIfNecessary();
void HandlePageNavigateRequest(const base::DictionaryValue* request);
// devtools_service::DevToolsAgent implementation.
void SetClient(devtools_service::DevToolsAgentClientPtr client) override;
void DispatchProtocolMessage(const mojo::String& message) override;
// The following methods are called by |client_impl_|.
void OnReceivedClientMessage(int32_t call_id,
const mojo::String& message,
const mojo::String& state);
void OnForwardClientClosed();
mojo::ApplicationImpl* const app_;
FrameDevToolsAgentDelegate* const delegate_;
const std::string id_;
scoped_ptr<FrameDevToolsAgentClient> client_impl_;
mojo::Binding<DevToolsAgent> binding_;
// The DevToolsAgent interface provided by the frame. This class will forward
// DevToolsAgent method calls it receives to |forward_agent_|.
devtools_service::DevToolsAgentPtr forward_agent_;
std::string state_;
std::map<int, std::string> pending_messages_;
DISALLOW_COPY_AND_ASSIGN(FrameDevToolsAgent);
};
} // namespace web_view
#endif // COMPONENTS_WEB_VIEW_FRAME_DEVTOOLS_AGENT_H_
|