blob: a952588f758fd0f49041160ee840ab2f50d54f6f (
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
|
// Copyright (c) 2013 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 CONTENT_BROWSER_DEVTOOLS_IPC_DEVTOOLS_AGENT_HOST_H_
#define CONTENT_BROWSER_DEVTOOLS_IPC_DEVTOOLS_AGENT_HOST_H_
#include "content/browser/devtools/devtools_agent_host_impl.h"
namespace IPC {
class Message;
}
namespace content {
class CONTENT_EXPORT IPCDevToolsAgentHost : public DevToolsAgentHostImpl {
public:
// DevToolsAgentHostImpl implementation.
void Attach() override;
void Detach() override;
void DispatchProtocolMessage(const std::string& message) override;
void InspectElement(int x, int y) override;
protected:
IPCDevToolsAgentHost();
~IPCDevToolsAgentHost() override;
void Reattach(const std::string& saved_agent_state);
void ProcessChunkedMessageFromAgent(const std::string& message,
uint32 total_size);
virtual void SendMessageToAgent(IPC::Message* msg) = 0;
virtual void OnClientAttached() = 0;
virtual void OnClientDetached() = 0;
private:
std::string message_buffer_;
uint32 message_buffer_size_;
};
} // namespace content
#endif // CONTENT_BROWSER_DEVTOOLS_IPC_DEVTOOLS_AGENT_HOST_H_
|