blob: 912f787f326a3906d2772b4b4b5eb714dc94ae2e (
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
|
// 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.
#ifndef CONTENT_BROWSER_DEBUGGER_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_
#define CONTENT_BROWSER_DEBUGGER_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_
#pragma once
#include <map>
#include "base/basictypes.h"
#include "content/browser/debugger/devtools_agent_host.h"
#include "content/common/content_export.h"
#include "content/public/browser/render_view_host_observer.h"
namespace content {
class RenderViewHost;
class CONTENT_EXPORT RenderViewDevToolsAgentHost
: public DevToolsAgentHost,
private content::RenderViewHostObserver {
public:
RenderViewDevToolsAgentHost(RenderViewHost*);
private:
virtual ~RenderViewDevToolsAgentHost();
// DevToolsAgentHost implementation.
virtual void SendMessageToAgent(IPC::Message* msg) OVERRIDE;
virtual void NotifyClientClosing() OVERRIDE;
virtual int GetRenderProcessId() OVERRIDE;
// content::RenderViewHostObserver overrides.
virtual void RenderViewHostDestroyed(RenderViewHost* rvh) OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
void OnDispatchOnInspectorFrontend(const std::string& message);
void OnSaveAgentRuntimeState(const std::string& state);
void OnClearBrowserCache();
void OnClearBrowserCookies();
RenderViewHost* render_view_host_;
DISALLOW_COPY_AND_ASSIGN(RenderViewDevToolsAgentHost);
};
} // namespace content
#endif // CONTENT_BROWSER_DEBUGGER_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_
|