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

Side by Side Diff: webrtc/rtc_base/trace_event.h

Issue 3002663002: Make it possible for tests to set up trace event handlers. (Closed)
Patch Set: Actually fix it. Created 3 years, 4 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
« webrtc/BUILD.gn ('K') | « webrtc/BUILD.gn ('k') | no next file » | 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 under third_party_mods/chromium or at: 3 // found in the LICENSE file under third_party_mods/chromium or at:
4 // http://src.chromium.org/svn/trunk/src/LICENSE 4 // http://src.chromium.org/svn/trunk/src/LICENSE
5 5
6 #ifndef WEBRTC_RTC_BASE_TRACE_EVENT_H_ 6 #ifndef WEBRTC_RTC_BASE_TRACE_EVENT_H_
7 #define WEBRTC_RTC_BASE_TRACE_EVENT_H_ 7 #define WEBRTC_RTC_BASE_TRACE_EVENT_H_
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 // Implementation detail: trace event macros create temporary variables 568 // Implementation detail: trace event macros create temporary variables
569 // to keep instrumentation overhead low. These macros give each temporary 569 // to keep instrumentation overhead low. These macros give each temporary
570 // variable a unique name based on the line number to prevent name collissions. 570 // variable a unique name based on the line number to prevent name collissions.
571 #define INTERNAL_TRACE_EVENT_UID3(a,b) \ 571 #define INTERNAL_TRACE_EVENT_UID3(a,b) \
572 trace_event_unique_##a##b 572 trace_event_unique_##a##b
573 #define INTERNAL_TRACE_EVENT_UID2(a,b) \ 573 #define INTERNAL_TRACE_EVENT_UID2(a,b) \
574 INTERNAL_TRACE_EVENT_UID3(a,b) 574 INTERNAL_TRACE_EVENT_UID3(a,b)
575 #define INTERNAL_TRACE_EVENT_UID(name_prefix) \ 575 #define INTERNAL_TRACE_EVENT_UID(name_prefix) \
576 INTERNAL_TRACE_EVENT_UID2(name_prefix, __LINE__) 576 INTERNAL_TRACE_EVENT_UID2(name_prefix, __LINE__)
577 577
578 #ifdef WEBRTC_NON_CONST_TRACE_EVENT_HANDLERS
kwiberg-webrtc 2017/08/16 13:11:41 Should this be named _NON_STATIC_ instead of _NON_
ehmaldonado_webrtc 2017/08/16 13:40:57 Done.
579 #define INTERNAL_TRACE_EVENT_INFO_TYPE \
580 const unsigned char*
581 #else
582 #define INTERNAL_TRACE_EVENT_INFO_TYPE \
583 static const unsigned char*
584 #endif // WEBRTC_IS_TEST
kjellander_webrtc 2017/08/16 11:58:57 // WEBRTC_NON_CONST_TRACE_EVENT_HANDLERS ?
ehmaldonado_webrtc 2017/08/16 12:00:45 Right, sorry.
ehmaldonado_webrtc 2017/08/16 13:40:57 Done.
585
578 // Implementation detail: internal macro to create static category. 586 // Implementation detail: internal macro to create static category.
579 #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category) \ 587 #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category) \
580 static const unsigned char* INTERNAL_TRACE_EVENT_UID(catstatic) = \ 588 INTERNAL_TRACE_EVENT_INFO_TYPE INTERNAL_TRACE_EVENT_UID(catstatic) = \
581 TRACE_EVENT_API_GET_CATEGORY_ENABLED(category); 589 TRACE_EVENT_API_GET_CATEGORY_ENABLED(category);
582 590
583 // Implementation detail: internal macro to create static category and add 591 // Implementation detail: internal macro to create static category and add
584 // event if the category is enabled. 592 // event if the category is enabled.
585 #define INTERNAL_TRACE_EVENT_ADD(phase, category, name, flags, ...) \ 593 #define INTERNAL_TRACE_EVENT_ADD(phase, category, name, flags, ...) \
586 do { \ 594 do { \
587 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category); \ 595 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category); \
588 if (*INTERNAL_TRACE_EVENT_UID(catstatic)) { \ 596 if (*INTERNAL_TRACE_EVENT_UID(catstatic)) { \
589 webrtc::trace_event_internal::AddTraceEvent( \ 597 webrtc::trace_event_internal::AddTraceEvent( \
590 phase, INTERNAL_TRACE_EVENT_UID(catstatic), name, \ 598 phase, INTERNAL_TRACE_EVENT_UID(catstatic), name, \
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 const char* name; 909 const char* name;
902 }; 910 };
903 Data* p_data_; 911 Data* p_data_;
904 Data data_; 912 Data data_;
905 }; 913 };
906 914
907 } // namespace trace_event_internal 915 } // namespace trace_event_internal
908 } // namespace webrtc 916 } // namespace webrtc
909 917
910 #endif // WEBRTC_RTC_BASE_TRACE_EVENT_H_ 918 #endif // WEBRTC_RTC_BASE_TRACE_EVENT_H_
OLDNEW
« webrtc/BUILD.gn ('K') | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698