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

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

Issue 460018: DevTools: make possible profiling of scripts doing heavy calculations. (Closed)
Patch Set: Comments addressed Created 11 years 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 | « chrome/renderer/devtools_agent_filter.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
diff --git a/webkit/glue/devtools/debugger_agent.h b/webkit/glue/devtools/debugger_agent.h
index 9549447ab69eb948a1c66791bfb68cd58b642206..6ba1a844eddd32cc9813b5398e99a124c9202f39 100644
--- a/webkit/glue/devtools/debugger_agent.h
+++ b/webkit/glue/devtools/debugger_agent.h
@@ -9,19 +9,7 @@
#define DEBUGGER_AGENT_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3) \
/* Requests global context id of the inspected tab. */ \
- METHOD0(GetContextId) \
- \
- /* Starts profiling. */ \
- METHOD1(StartProfiling, int /* flags */) \
- \
- /* Stops profiling. */ \
- METHOD1(StopProfiling, int /* flags */) \
- \
- /* Requests current profiler state. */ \
- METHOD0(GetActiveProfilerModules) \
- \
- /* Retrieves next portion of profiler log. */ \
- METHOD0(GetNextLogLines)
+ METHOD0(GetContextId)
DEFINE_RPC_CLASS(DebuggerAgent, DEBUGGER_AGENT_STRUCT)
@@ -29,13 +17,7 @@ DEFINE_RPC_CLASS(DebuggerAgent, DEBUGGER_AGENT_STRUCT)
METHOD1(DebuggerOutput, String /* output text */) \
\
/* Pushes debugger context id into the client. */ \
- METHOD1(SetContextId, int /* context id */) \
- \
- /* Response to GetActiveProfilerModules. */ \
- METHOD1(DidGetActiveProfilerModules, int /* flags */) \
- \
- /* Response to GetNextLogLines. */ \
- METHOD1(DidGetNextLogLines, String /* log */)
+ METHOD1(SetContextId, int /* context id */)
DEFINE_RPC_CLASS(DebuggerAgentDelegate, DEBUGGER_AGENT_DELEGATE_STRUCT)
« no previous file with comments | « chrome/renderer/devtools_agent_filter.cc ('k') | webkit/glue/devtools/debugger_agent_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698