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

Unified Diff: content/browser/tracing/tracing_ui.h

Issue 136403007: Implement system tracing for cros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
Index: content/browser/tracing/tracing_ui.h
diff --git a/content/browser/tracing/tracing_ui.h b/content/browser/tracing/tracing_ui.h
index 40ce0821e2d49a05711cadc43c8ea8900a0e37b5..58db8473e316315e282fa4b22c09f7623c37d938 100644
--- a/content/browser/tracing/tracing_ui.h
+++ b/content/browser/tracing/tracing_ui.h
@@ -5,6 +5,7 @@
#ifndef CONTENT_BROWSER_TRACING_UI_H_
#define CONTENT_BROWSER_TRACING_UI_H_
+#include "base/memory/ref_counted_memory.h"
#include "content/public/browser/web_ui_controller.h"
namespace content {
@@ -15,6 +16,8 @@ class CONTENT_EXPORT TracingUI : public WebUIController {
explicit TracingUI(WebUI* web_ui);
virtual ~TracingUI();
void OnMonitoringStateChanged(bool is_monitoring);
+ void OnSystemTraceDataCollected(
+ const scoped_refptr<base::RefCountedString>& events_str_ptr);
private:
DISALLOW_COPY_AND_ASSIGN(TracingUI);

Powered by Google App Engine
This is Rietveld 408576698