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

Unified Diff: content/renderer/devtools/devtools_agent.h

Issue 184283003: DevTools: support configurable category filter for trace events callback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « no previous file | content/renderer/devtools/devtools_agent.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/devtools/devtools_agent.h
diff --git a/content/renderer/devtools/devtools_agent.h b/content/renderer/devtools/devtools_agent.h
index 68f3bc4fc2c951358833fa9b15c1657baf5e165d..fd0f042e9e1edcd47bab5fbf0b563ad4515676ba 100644
--- a/content/renderer/devtools/devtools_agent.h
+++ b/content/renderer/devtools/devtools_agent.h
@@ -63,7 +63,11 @@ class DevToolsAgent : public RenderViewObserver,
int numArgs, const char* const* argNames, const unsigned char* argTypes,
const unsigned long long* argValues,
unsigned char flags, double timestamp);
- virtual void setTraceEventCallback(TraceEventCallback cb) OVERRIDE;
+ virtual void unsetTraceEventCallback();
pfeldman 2014/02/28 09:23:01 reset?
+ virtual void setTraceEventCallback(const blink::WebString& category_filter,
+ TraceEventCallback cb);
+ // FIXME: this overload is obsolete, drop it and add OVERRIDE to the above.
+ virtual void setTraceEventCallback(TraceEventCallback cb);
virtual void startGPUEventsRecording() OVERRIDE;
virtual void stopGPUEventsRecording() OVERRIDE;
« no previous file with comments | « no previous file | content/renderer/devtools/devtools_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698