Index: content/app/android/library_loader_hooks.cc |
diff --git a/content/app/android/library_loader_hooks.cc b/content/app/android/library_loader_hooks.cc |
index 2a1a3dfd72a476bca7082b47d97dcd16f99891b2..39ef2b08f73a21e3fd0be44b3c958c4dbe0a488c 100644 |
--- a/content/app/android/library_loader_hooks.cc |
+++ b/content/app/android/library_loader_hooks.cc |
@@ -16,7 +16,7 @@ |
#include "base/strings/string_util.h" |
#include "base/trace_event/trace_event.h" |
#include "base/tracked_objects.h" |
-#include "components/tracing/trace_config_file.h" |
+#include "components/tracing/startup_tracing.h" |
#include "components/tracing/tracing_switches.h" |
#include "content/app/android/app_jni_registrar.h" |
#include "content/browser/android/browser_jni_registrar.h" |
@@ -94,11 +94,7 @@ |
base::trace_event::TraceLog::GetInstance()->SetEnabled( |
trace_config, base::trace_event::TraceLog::RECORDING_MODE); |
} else { |
- if (tracing::TraceConfigFile::GetInstance()->IsEnabled()) { |
- base::trace_event::TraceLog::GetInstance()->SetEnabled( |
- tracing::TraceConfigFile::GetInstance()->GetTraceConfig(), |
- base::trace_event::TraceLog::RECORDING_MODE); |
- } |
+ tracing::EnableStartupTracingIfConfigFileExists(); |
} |
// Android's main browser loop is custom so we set the browser |