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

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

Issue 16745002: Use a direct include of strings headers in base/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « base/debug/trace_event_android.cc ('k') | base/debug/trace_event_impl.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_DEBUG_TRACE_EVENT_IMPL_H_ 6 #ifndef BASE_DEBUG_TRACE_EVENT_IMPL_H_
7 #define BASE_DEBUG_TRACE_EVENT_IMPL_H_ 7 #define BASE_DEBUG_TRACE_EVENT_IMPL_H_
8 8
9 #include <stack> 9 #include <stack>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
15 #include "base/hash_tables.h" 15 #include "base/hash_tables.h"
16 #include "base/memory/ref_counted_memory.h" 16 #include "base/memory/ref_counted_memory.h"
17 #include "base/memory/scoped_vector.h" 17 #include "base/memory/scoped_vector.h"
18 #include "base/observer_list.h" 18 #include "base/observer_list.h"
19 #include "base/string_util.h" 19 #include "base/strings/string_util.h"
20 #include "base/synchronization/condition_variable.h" 20 #include "base/synchronization/condition_variable.h"
21 #include "base/synchronization/lock.h" 21 #include "base/synchronization/lock.h"
22 #include "base/threading/thread.h" 22 #include "base/threading/thread.h"
23 #include "base/timer.h" 23 #include "base/timer.h"
24 24
25 // Older style trace macros with explicit id and extra data 25 // Older style trace macros with explicit id and extra data
26 // Only these macros result in publishing data to ETW as currently implemented. 26 // Only these macros result in publishing data to ETW as currently implemented.
27 #define TRACE_EVENT_BEGIN_ETW(name, id, extra) \ 27 #define TRACE_EVENT_BEGIN_ETW(name, id, extra) \
28 base::debug::TraceLog::AddTraceEventEtw( \ 28 base::debug::TraceLog::AddTraceEventEtw( \
29 TRACE_EVENT_PHASE_BEGIN, \ 29 TRACE_EVENT_PHASE_BEGIN, \
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 563
564 CategoryFilter category_filter_; 564 CategoryFilter category_filter_;
565 565
566 DISALLOW_COPY_AND_ASSIGN(TraceLog); 566 DISALLOW_COPY_AND_ASSIGN(TraceLog);
567 }; 567 };
568 568
569 } // namespace debug 569 } // namespace debug
570 } // namespace base 570 } // namespace base
571 571
572 #endif // BASE_DEBUG_TRACE_EVENT_IMPL_H_ 572 #endif // BASE_DEBUG_TRACE_EVENT_IMPL_H_
OLDNEW
« no previous file with comments | « base/debug/trace_event_android.cc ('k') | base/debug/trace_event_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698