| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef BASE_TRACE_EVENT_TRACE_LOG_H_ | 5 #ifndef BASE_TRACE_EVENT_TRACE_LOG_H_ |
| 6 #define BASE_TRACE_EVENT_TRACE_LOG_H_ | 6 #define BASE_TRACE_EVENT_TRACE_LOG_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <unordered_map> | 13 #include <unordered_map> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/atomicops.h" | 16 #include "base/atomicops.h" |
| 17 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
| 18 #include "base/macros.h" | 18 #include "base/macros.h" |
| 19 #include "base/memory/scoped_vector.h" | |
| 20 #include "base/trace_event/memory_dump_provider.h" | 19 #include "base/trace_event/memory_dump_provider.h" |
| 21 #include "base/trace_event/trace_config.h" | 20 #include "base/trace_event/trace_config.h" |
| 22 #include "base/trace_event/trace_event_impl.h" | 21 #include "base/trace_event/trace_event_impl.h" |
| 23 #include "build/build_config.h" | 22 #include "build/build_config.h" |
| 24 | 23 |
| 25 namespace base { | 24 namespace base { |
| 26 | 25 |
| 27 template <typename Type> | 26 template <typename Type> |
| 28 struct DefaultSingletonTraits; | 27 struct DefaultSingletonTraits; |
| 29 class MessageLoop; | 28 class MessageLoop; |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 | 493 |
| 495 FilterFactoryForTesting filter_factory_for_testing_; | 494 FilterFactoryForTesting filter_factory_for_testing_; |
| 496 | 495 |
| 497 DISALLOW_COPY_AND_ASSIGN(TraceLog); | 496 DISALLOW_COPY_AND_ASSIGN(TraceLog); |
| 498 }; | 497 }; |
| 499 | 498 |
| 500 } // namespace trace_event | 499 } // namespace trace_event |
| 501 } // namespace base | 500 } // namespace base |
| 502 | 501 |
| 503 #endif // BASE_TRACE_EVENT_TRACE_LOG_H_ | 502 #endif // BASE_TRACE_EVENT_TRACE_LOG_H_ |
| OLD | NEW |