| Index: content/browser/tracing/tracing_controller_impl.cc
|
| diff --git a/content/browser/tracing/tracing_controller_impl.cc b/content/browser/tracing/tracing_controller_impl.cc
|
| index 3a235fe5bdaf803c7790dfdb12de1e554e952550..953380246a58f7d2c58a4d7e4fc12af26818a6f5 100644
|
| --- a/content/browser/tracing/tracing_controller_impl.cc
|
| +++ b/content/browser/tracing/tracing_controller_impl.cc
|
| @@ -14,6 +14,7 @@
|
| #include "content/common/child_process_messages.h"
|
| #include "content/public/browser/browser_message_filter.h"
|
| #include "content/public/common/content_switches.h"
|
| +#include "third_party/zlib/zlib.h"
|
|
|
| #if defined(OS_CHROMEOS)
|
| #include "chromeos/dbus/dbus_thread_manager.h"
|
| @@ -152,6 +153,10 @@ bool TracingControllerImpl::EnableRecording(
|
| return true;
|
| }
|
|
|
| +bool TracingControllerImpl::IsRecordingEnabled() const {
|
| + return is_recording_;
|
| +}
|
| +
|
| void TracingControllerImpl::OnEnableRecordingDone(
|
| const CategoryFilter& category_filter,
|
| const TraceOptions& trace_options,
|
|
|