summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/InspectorDebuggerAgent.h
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-08-27 11:02:25 +0100
committerSteve Block <steveblock@google.com>2010-09-02 17:17:20 +0100
commite8b154fd68f9b33be40a3590e58347f353835f5c (patch)
tree0733ce26384183245aaa5656af26c653636fe6c1 /WebCore/inspector/InspectorDebuggerAgent.h
parentda56157816334089526a7a115a85fd85a6e9a1dc (diff)
downloadexternal_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.zip
external_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.tar.gz
external_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.tar.bz2
Merge WebKit at r66079 : Initial merge by git
Change-Id: Ie2e1440fb9d487d24e52c247342c076fecaecac7
Diffstat (limited to 'WebCore/inspector/InspectorDebuggerAgent.h')
-rw-r--r--WebCore/inspector/InspectorDebuggerAgent.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/inspector/InspectorDebuggerAgent.h b/WebCore/inspector/InspectorDebuggerAgent.h
index 2cfbf55..91bcd49 100644
--- a/WebCore/inspector/InspectorDebuggerAgent.h
+++ b/WebCore/inspector/InspectorDebuggerAgent.h
@@ -42,12 +42,12 @@
namespace WebCore {
class InjectedScriptHost;
class InspectorController;
+class InspectorFrontend;
class InspectorValue;
-class RemoteInspectorFrontend;
class InspectorDebuggerAgent : public ScriptDebugListener, public Noncopyable {
public:
- static PassOwnPtr<InspectorDebuggerAgent> create(InspectorController*, RemoteInspectorFrontend*);
+ static PassOwnPtr<InspectorDebuggerAgent> create(InspectorController*, InspectorFrontend*);
virtual ~InspectorDebuggerAgent();
static bool isDebuggerAlwaysEnabled();
@@ -73,7 +73,7 @@ public:
static String md5Base16(const String& string);
private:
- InspectorDebuggerAgent(InspectorController*, RemoteInspectorFrontend*);
+ InspectorDebuggerAgent(InspectorController*, InspectorFrontend*);
PassRefPtr<InspectorValue> currentCallFrames();
@@ -86,7 +86,7 @@ private:
virtual void didContinue();
InspectorController* m_inspectorController;
- RemoteInspectorFrontend* m_remoteFrontend;
+ InspectorFrontend* m_frontend;
ScriptState* m_pausedScriptState;
HashMap<String, String> m_sourceIDToURL;
HashMap<String, String> m_scriptIDToContent;