Index: content/public/browser/tracing_controller.h |
diff --git a/content/public/browser/tracing_controller.h b/content/public/browser/tracing_controller.h |
index 5b3eb4e4873abf6930d398294003aa0ef84c4098..2ce14c9c4b09b0f9f669de0392657ce8235d4684 100644 |
--- a/content/public/browser/tracing_controller.h |
+++ b/content/public/browser/tracing_controller.h |
@@ -161,11 +161,11 @@ class TracingController { |
const scoped_refptr<TraceDataSink>& trace_data_sink) = 0; |
// Get the maximum across processes of trace buffer percent full state. |
- // When the TraceBufferPercentFull value is determined, the callback is |
+ // When the TraceBufferUsage value is determined, the callback is |
// called. |
- typedef base::Callback<void(float)> GetTraceBufferPercentFullCallback; |
- virtual bool GetTraceBufferPercentFull( |
- const GetTraceBufferPercentFullCallback& callback) = 0; |
+ typedef base::Callback<void(float, size_t)> GetTraceBufferUsageCallback; |
+ virtual bool GetTraceBufferUsage( |
+ const GetTraceBufferUsageCallback& callback) = 0; |
// |callback| will will be called every time the given event occurs on any |
// process. |