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

Unified Diff: webkit/glue/devtools/devtools_rpc_js.h

Issue 264077: Convert devtools interfaces over to using WebString.... (Closed) Base URL: svn://svn.chromium.org/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/devtools/devtools_rpc.h ('k') | webkit/glue/devtools/tools_agent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/devtools_rpc_js.h
===================================================================
--- webkit/glue/devtools/devtools_rpc_js.h (revision 29249)
+++ webkit/glue/devtools/devtools_rpc_js.h (working copy)
@@ -7,8 +7,6 @@
#ifndef WEBKIT_GLUE_DEVTOOLS_DEVTOOLS_RPC_JS_H_
#define WEBKIT_GLUE_DEVTOOLS_DEVTOOLS_RPC_JS_H_
-#include <string>
-
// Do not remove this one although it is not used.
#include <wtf/OwnPtr.h>
@@ -103,9 +101,9 @@
self->delegate_->SendRpcMessage( \
#Class, \
method, \
- webkit_glue::StringToStdString(param1), \
- webkit_glue::StringToStdString(param2), \
- webkit_glue::StringToStdString(param3)); \
+ param1, \
+ param2, \
+ param3); \
} \
OwnPtr<BoundObject> bound_obj_; \
DISALLOW_COPY_AND_ASSIGN(Js##Class##BoundObj); \
« no previous file with comments | « webkit/glue/devtools/devtools_rpc.h ('k') | webkit/glue/devtools/tools_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698