Chromium Code Reviews| 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 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_H_ | 5 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_H_ |
| 6 #define BASE_TRACE_EVENT_TRACE_EVENT_H_ | 6 #define BASE_TRACE_EVENT_TRACE_EVENT_H_ |
| 7 | 7 |
| 8 // This header file defines implementation details of how the trace macros in | 8 // This header file defines implementation details of how the trace macros in |
| 9 // trace_event_common.h collect and store trace events. Anything not | 9 // trace_event_common.h collect and store trace events. Anything not |
| 10 // implementation-specific should go in trace_macros_common.h instead of here. | 10 // implementation-specific should go in trace_macros_common.h instead of here. |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 933 TRACE_EVENT_API_ATOMIC_STORE( | 933 TRACE_EVENT_API_ATOMIC_STORE( |
| 934 g_trace_state[BucketNumber], | 934 g_trace_state[BucketNumber], |
| 935 reinterpret_cast<TRACE_EVENT_API_ATOMIC_WORD>( | 935 reinterpret_cast<TRACE_EVENT_API_ATOMIC_WORD>( |
| 936 const_cast<char*>(category_and_name))); | 936 const_cast<char*>(category_and_name))); |
| 937 } | 937 } |
| 938 | 938 |
| 939 private: | 939 private: |
| 940 const char* previous_state_; | 940 const char* previous_state_; |
| 941 }; | 941 }; |
| 942 | 942 |
| 943 using TraceContext = const void*; | 943 using TraceContext = trace_event_internal::TraceID; |
|
chiniforooshan
2016/01/28 20:19:23
Where is this used?
Sami
2016/02/01 17:45:58
The current code doesn't use it because all contex
| |
| 944 | 944 |
| 945 class TraceScopedContext { | 945 class TraceScopedContext { |
| 946 public: | 946 public: |
| 947 TraceScopedContext(const char* category_group, | 947 TraceScopedContext(const char* category_group, |
| 948 const char* name, | 948 const char* name, |
| 949 TraceContext context) | 949 trace_event_internal::TraceID::DontMangle context) |
| 950 : category_group_(category_group), name_(name), context_(context) { | 950 : category_group_(category_group), name_(name), context_(context) { |
| 951 TRACE_EVENT_ENTER_CONTEXT(category_group_, name_, context_); | 951 TRACE_EVENT_ENTER_CONTEXT(category_group_, name_, context_); |
| 952 } | 952 } |
| 953 | 953 |
| 954 ~TraceScopedContext() { | 954 ~TraceScopedContext() { |
| 955 TRACE_EVENT_LEAVE_CONTEXT(category_group_, name_, context_); | 955 TRACE_EVENT_LEAVE_CONTEXT(category_group_, name_, context_); |
| 956 } | 956 } |
| 957 | 957 |
| 958 private: | 958 private: |
| 959 const char* category_group_; | 959 const char* category_group_; |
| 960 const char* name_; | 960 const char* name_; |
| 961 TraceContext context_; | 961 trace_event_internal::TraceID::DontMangle context_; |
| 962 DISALLOW_COPY_AND_ASSIGN(TraceScopedContext); | 962 DISALLOW_COPY_AND_ASSIGN(TraceScopedContext); |
| 963 }; | 963 }; |
| 964 | 964 |
| 965 } // namespace trace_event_internal | 965 } // namespace trace_event_internal |
| 966 | 966 |
| 967 namespace base { | 967 namespace base { |
| 968 namespace trace_event { | 968 namespace trace_event { |
| 969 | 969 |
| 970 using trace_event_internal::TraceContext; | 970 using trace_event_internal::TraceContext; |
|
chiniforooshan
2016/01/28 20:19:22
or this?
Sami
2016/02/01 17:45:58
Well spotted, this isn't needed anymore.
| |
| 971 | 971 |
| 972 template<typename IDType> class TraceScopedTrackableObject { | 972 template<typename IDType> class TraceScopedTrackableObject { |
| 973 public: | 973 public: |
| 974 TraceScopedTrackableObject(const char* category_group, const char* name, | 974 TraceScopedTrackableObject(const char* category_group, const char* name, |
| 975 IDType id) | 975 IDType id) |
| 976 : category_group_(category_group), | 976 : category_group_(category_group), |
| 977 name_(name), | 977 name_(name), |
| 978 id_(id) { | 978 id_(id) { |
| 979 TRACE_EVENT_OBJECT_CREATED_WITH_ID(category_group_, name_, id_); | 979 TRACE_EVENT_OBJECT_CREATED_WITH_ID(category_group_, name_, id_); |
| 980 } | 980 } |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 992 const char* name_; | 992 const char* name_; |
| 993 IDType id_; | 993 IDType id_; |
| 994 | 994 |
| 995 DISALLOW_COPY_AND_ASSIGN(TraceScopedTrackableObject); | 995 DISALLOW_COPY_AND_ASSIGN(TraceScopedTrackableObject); |
| 996 }; | 996 }; |
| 997 | 997 |
| 998 } // namespace trace_event | 998 } // namespace trace_event |
| 999 } // namespace base | 999 } // namespace base |
| 1000 | 1000 |
| 1001 #endif // BASE_TRACE_EVENT_TRACE_EVENT_H_ | 1001 #endif // BASE_TRACE_EVENT_TRACE_EVENT_H_ |
| OLD | NEW |