Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(285)

Unified Diff: webkit/glue/webdevtoolsfrontend_impl.h

Issue 330029: DevTools: Remove base/ dependencies from glue/devtools (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webdevtoolsclient_impl.cc ('k') | webkit/glue/webdevtoolsfrontend_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webdevtoolsfrontend_impl.h
===================================================================
--- webkit/glue/webdevtoolsfrontend_impl.h (revision 30177)
+++ webkit/glue/webdevtoolsfrontend_impl.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBKIT_GLUE_WEBDEVTOOLSCLIENT_IMPL_H_
-#define WEBKIT_GLUE_WEBDEVTOOLSCLIENT_IMPL_H_
+#ifndef WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_
+#define WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_
#include <string>
@@ -12,8 +12,8 @@
#include <wtf/RefPtr.h>
#include "v8.h"
+#include "webkit/api/public/WebDevToolsFrontend.h"
#include "webkit/glue/devtools/devtools_rpc.h"
-#include "webkit/glue/webdevtoolsclient.h"
namespace WebCore {
class Node;
@@ -29,14 +29,14 @@
class WebDevToolsClientDelegate;
class WebViewImpl;
-class WebDevToolsClientImpl : public WebDevToolsClient,
- public DevToolsRpc::Delegate {
+class WebDevToolsFrontendImpl : public WebKit::WebDevToolsFrontend,
+ public DevToolsRpc::Delegate {
public:
- WebDevToolsClientImpl(
+ WebDevToolsFrontendImpl(
WebViewImpl* web_view_impl,
- WebDevToolsClientDelegate* delegate,
+ WebKit::WebDevToolsFrontendClient* client,
const String& application_locale);
- virtual ~WebDevToolsClientImpl();
+ virtual ~WebDevToolsFrontendImpl();
// DevToolsRpc::Delegate implementation.
virtual void SendRpcMessage(const String& class_name,
@@ -45,8 +45,8 @@
const String& param2,
const String& param3);
- // WebDevToolsClient implementation.
- virtual void DispatchMessageFromAgent(const WebKit::WebString& class_name,
+ // WebDevToolsFrontend implementation.
+ virtual void dispatchMessageFromAgent(const WebKit::WebString& class_name,
const WebKit::WebString& method_name,
const WebKit::WebString& param1,
const WebKit::WebString& param2,
@@ -79,7 +79,7 @@
const v8::Arguments& args);
WebViewImpl* web_view_impl_;
- WebDevToolsClientDelegate* delegate_;
+ WebKit::WebDevToolsFrontendClient* client_;
String application_locale_;
OwnPtr<BoundObject> debugger_command_executor_obj_;
OwnPtr<JsDebuggerAgentBoundObj> debugger_agent_obj_;
@@ -88,7 +88,6 @@
Vector<Vector<String> > pending_incoming_messages_;
OwnPtr<BoundObject> dev_tools_host_;
OwnPtr<ToolsAgentNativeDelegateImpl> tools_agent_native_delegate_impl_;
- DISALLOW_COPY_AND_ASSIGN(WebDevToolsClientImpl);
};
-#endif // WEBKIT_GLUE_WEBDEVTOOLSCLIENT_IMPL_H_
+#endif // WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_
« no previous file with comments | « webkit/glue/webdevtoolsclient_impl.cc ('k') | webkit/glue/webdevtoolsfrontend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698