OLD | NEW |
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_TRACE_EVENT_TRACE_EVENT_IMPL_H_ |
7 #define BASE_DEBUG_TRACE_EVENT_IMPL_H_ | 7 #define BASE_TRACE_EVENT_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/atomicops.h" | 13 #include "base/atomicops.h" |
14 #include "base/base_export.h" | 14 #include "base/base_export.h" |
15 #include "base/callback.h" | 15 #include "base/callback.h" |
16 #include "base/containers/hash_tables.h" | 16 #include "base/containers/hash_tables.h" |
17 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 OutputCallback flush_output_callback_; | 803 OutputCallback flush_output_callback_; |
804 scoped_refptr<MessageLoopProxy> flush_message_loop_proxy_; | 804 scoped_refptr<MessageLoopProxy> flush_message_loop_proxy_; |
805 subtle::AtomicWord generation_; | 805 subtle::AtomicWord generation_; |
806 | 806 |
807 DISALLOW_COPY_AND_ASSIGN(TraceLog); | 807 DISALLOW_COPY_AND_ASSIGN(TraceLog); |
808 }; | 808 }; |
809 | 809 |
810 } // namespace debug | 810 } // namespace debug |
811 } // namespace base | 811 } // namespace base |
812 | 812 |
813 #endif // BASE_DEBUG_TRACE_EVENT_IMPL_H_ | 813 #endif // BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_ |
OLD | NEW |