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 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_BASE_TRACE_EVENT_H_ | 6 #ifndef WEBRTC_RTC_BASE_TRACE_EVENT_H_ |
7 #define WEBRTC_BASE_TRACE_EVENT_H_ | 7 #define WEBRTC_RTC_BASE_TRACE_EVENT_H_ |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "webrtc/base/event_tracer.h" | 11 #include "webrtc/base/event_tracer.h" |
12 | 12 |
13 #if defined(TRACE_EVENT0) | 13 #if defined(TRACE_EVENT0) |
14 #error "Another copy of trace_event.h has already been included." | 14 #error "Another copy of trace_event.h has already been included." |
15 #endif | 15 #endif |
16 | 16 |
17 // Extracted from Chromium's src/base/debug/trace_event.h. | 17 // Extracted from Chromium's src/base/debug/trace_event.h. |
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 const unsigned char* category_enabled; | 900 const unsigned char* category_enabled; |
901 const char* name; | 901 const char* name; |
902 }; | 902 }; |
903 Data* p_data_; | 903 Data* p_data_; |
904 Data data_; | 904 Data data_; |
905 }; | 905 }; |
906 | 906 |
907 } // namespace trace_event_internal | 907 } // namespace trace_event_internal |
908 } // namespace webrtc | 908 } // namespace webrtc |
909 | 909 |
910 #endif // WEBRTC_BASE_TRACE_EVENT_H_ | 910 #endif // WEBRTC_RTC_BASE_TRACE_EVENT_H_ |
OLD | NEW |