| Index: base/debug/trace_event.cc
|
| diff --git a/base/debug/trace_event.cc b/base/debug/trace_event.cc
|
| index c219cec293b1dd35c999fae2fa0df90af0480f08..92a0691b7a1f17566387c5bad937820be06a3f17 100644
|
| --- a/base/debug/trace_event.cc
|
| +++ b/base/debug/trace_event.cc
|
| @@ -2,17 +2,28 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/debug/trace_event.h"
|
| +#include <inttypes.h>
|
| +#include <stdbool.h>
|
| +#include <stdio.h>
|
| +#include <string>
|
|
|
| -#include "base/format_macros.h"
|
| +#include "base/base_paths.h"
|
| +#include "base/basictypes.h"
|
| +#include "base/debug/trace_event.h"
|
| #include "base/file_path.h"
|
| #include "base/file_util.h"
|
| #include "base/path_service.h"
|
| +#include "base/process.h"
|
| #include "base/process_util.h"
|
| +#include "base/scoped_ptr.h"
|
| +#include "base/singleton.h"
|
| #include "base/stringprintf.h"
|
| +#include "base/synchronization/lock.h"
|
| #include "base/threading/platform_thread.h"
|
| -#include "base/utf_string_conversions.h"
|
| #include "base/time.h"
|
| +#include "base/timer.h"
|
| +#include "base/utf_string_conversions.h"
|
| +#include "build/build_config.h"
|
|
|
| #define USE_UNRELIABLE_NOW
|
|
|
|
|