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

Unified Diff: webkit/glue/devtools/debugger_agent.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/bound_object.cc ('k') | webkit/glue/devtools/debugger_agent_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/debugger_agent.h
===================================================================
--- webkit/glue/devtools/debugger_agent.h (revision 29249)
+++ webkit/glue/devtools/debugger_agent.h (working copy)
@@ -5,8 +5,6 @@
#ifndef WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_H_
#define WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_H_
-#include <string>
-
#include "webkit/glue/devtools/devtools_rpc.h"
#define DEBUGGER_AGENT_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3) \
@@ -31,7 +29,7 @@
DEFINE_RPC_CLASS(DebuggerAgent, DEBUGGER_AGENT_STRUCT)
#define DEBUGGER_AGENT_DELEGATE_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3) \
- METHOD1(DebuggerOutput, std::string /* output text */) \
+ METHOD1(DebuggerOutput, String /* output text */) \
\
/* Pushes debugger context id into the client. */ \
METHOD1(SetContextId, int /* context id */) \
@@ -40,7 +38,7 @@
METHOD1(DidGetActiveProfilerModules, int /* flags */) \
\
/* Response to GetNextLogLines. */ \
- METHOD1(DidGetNextLogLines, std::string /* log */)
+ METHOD1(DidGetNextLogLines, String /* log */)
DEFINE_RPC_CLASS(DebuggerAgentDelegate, DEBUGGER_AGENT_DELEGATE_STRUCT)
« no previous file with comments | « webkit/glue/devtools/bound_object.cc ('k') | webkit/glue/devtools/debugger_agent_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698