| 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_DEBUG_TRACE_EVENT_IMPL_H_ |
| 7 #define BASE_DEBUG_TRACE_EVENT_IMPL_H_ | 7 #define BASE_DEBUG_TRACE_EVENT_IMPL_H_ |
| 8 #pragma once | |
| 9 | 8 |
| 10 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 11 | 10 |
| 12 #include <string> | 11 #include <string> |
| 13 #include <vector> | 12 #include <vector> |
| 14 | 13 |
| 15 #include "base/callback.h" | 14 #include "base/callback.h" |
| 16 #include "base/hash_tables.h" | 15 #include "base/hash_tables.h" |
| 17 #include "base/memory/ref_counted_memory.h" | 16 #include "base/memory/ref_counted_memory.h" |
| 18 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 312 |
| 314 int process_id_; | 313 int process_id_; |
| 315 | 314 |
| 316 DISALLOW_COPY_AND_ASSIGN(TraceLog); | 315 DISALLOW_COPY_AND_ASSIGN(TraceLog); |
| 317 }; | 316 }; |
| 318 | 317 |
| 319 } // namespace debug | 318 } // namespace debug |
| 320 } // namespace base | 319 } // namespace base |
| 321 | 320 |
| 322 #endif // BASE_DEBUG_TRACE_EVENT_IMPL_H_ | 321 #endif // BASE_DEBUG_TRACE_EVENT_IMPL_H_ |
| OLD | NEW |