summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webdevtoolsclient_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/webdevtoolsclient_impl.h')
-rw-r--r--webkit/glue/webdevtoolsclient_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/webdevtoolsclient_impl.h b/webkit/glue/webdevtoolsclient_impl.h
index e58414a..b817a23 100644
--- a/webkit/glue/webdevtoolsclient_impl.h
+++ b/webkit/glue/webdevtoolsclient_impl.h
@@ -12,7 +12,6 @@
#include <wtf/RefPtr.h>
#include "v8.h"
-#include "webkit/glue/cpp_bound_class.h"
#include "webkit/glue/devtools/devtools_rpc.h"
#include "webkit/glue/webdevtoolsclient.h"
@@ -31,7 +30,6 @@ class WebDevToolsClientDelegate;
class WebViewImpl;
class WebDevToolsClientImpl : public WebDevToolsClient,
- public CppBoundClass,
public DevToolsRpc::Delegate {
public:
WebDevToolsClientImpl(
@@ -75,11 +73,13 @@ class WebDevToolsClientImpl : public WebDevToolsClient,
const v8::Arguments& args);
static v8::Handle<v8::Value> JsGetApplicationLocale(
const v8::Arguments& args);
+ static v8::Handle<v8::Value> JsDebuggerCommand(
+ const v8::Arguments& args);
WebViewImpl* web_view_impl_;
WebDevToolsClientDelegate* delegate_;
String application_locale_;
- OwnPtr<CppBoundClass> debugger_command_executor_obj_;
+ OwnPtr<BoundObject> debugger_command_executor_obj_;
OwnPtr<JsDebuggerAgentBoundObj> debugger_agent_obj_;
OwnPtr<JsToolsAgentBoundObj> tools_agent_obj_;
bool loaded_;