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

Side by Side Diff: base/trace_event/trace_event_impl.h

Issue 2365623003: Remove unused thread.h include in trace_event_impl.h and fix IWUU. (Closed)
Patch Set: Whitelist base DEPS for all web/tests Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « base/trace_event/trace_event_android.cc ('k') | base/trace_event/trace_log.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 5
6 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_ 6 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_
7 #define BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_ 7 #define BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_
8 8
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <memory> 11 #include <memory>
12 #include <stack> 12 #include <stack>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/atomicops.h" 16 #include "base/atomicops.h"
17 #include "base/base_export.h" 17 #include "base/base_export.h"
18 #include "base/callback.h" 18 #include "base/callback.h"
19 #include "base/containers/hash_tables.h" 19 #include "base/containers/hash_tables.h"
20 #include "base/macros.h" 20 #include "base/macros.h"
21 #include "base/observer_list.h" 21 #include "base/observer_list.h"
22 #include "base/single_thread_task_runner.h" 22 #include "base/single_thread_task_runner.h"
23 #include "base/strings/string_util.h" 23 #include "base/strings/string_util.h"
24 #include "base/synchronization/condition_variable.h" 24 #include "base/synchronization/condition_variable.h"
25 #include "base/synchronization/lock.h" 25 #include "base/synchronization/lock.h"
26 #include "base/threading/thread.h"
27 #include "base/threading/thread_local.h" 26 #include "base/threading/thread_local.h"
28 #include "base/trace_event/trace_event_memory_overhead.h" 27 #include "base/trace_event/trace_event_memory_overhead.h"
29 #include "build/build_config.h" 28 #include "build/build_config.h"
30 29
31 namespace base { 30 namespace base {
32 31
33 class WaitableEvent; 32 class WaitableEvent;
34 class MessageLoop; 33 class MessageLoop;
35 34
36 namespace trace_event { 35 namespace trace_event {
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 unsigned char arg_types_[kTraceMaxNumArgs]; 179 unsigned char arg_types_[kTraceMaxNumArgs];
181 char phase_; 180 char phase_;
182 181
183 DISALLOW_COPY_AND_ASSIGN(TraceEvent); 182 DISALLOW_COPY_AND_ASSIGN(TraceEvent);
184 }; 183 };
185 184
186 } // namespace trace_event 185 } // namespace trace_event
187 } // namespace base 186 } // namespace base
188 187
189 #endif // BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_ 188 #endif // BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_
OLDNEW
« no previous file with comments | « base/trace_event/trace_event_android.cc ('k') | base/trace_event/trace_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698