| 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 // This header file defines the set of trace_event macros without specifying | 5 // This header file defines the set of trace_event macros without specifying |
| 6 // how the events actually get collected and stored. If you need to expose trace | 6 // how the events actually get collected and stored. If you need to expose trace |
| 7 // events to some other universe, you can copy-and-paste this file as well as | 7 // events to some other universe, you can copy-and-paste this file as well as |
| 8 // trace_event.h, modifying the macros contained there as necessary for the | 8 // trace_event.h, modifying the macros contained there as necessary for the |
| 9 // target platform. The end result is that multiple libraries can funnel events | 9 // target platform. The end result is that multiple libraries can funnel events |
| 10 // through to a shared trace event collector. | 10 // through to a shared trace event collector. |
| (...skipping 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1580 const char* name_; | 1580 const char* name_; |
| 1581 IDType id_; | 1581 IDType id_; |
| 1582 | 1582 |
| 1583 DISALLOW_COPY_AND_ASSIGN(TraceScopedTrackableObject); | 1583 DISALLOW_COPY_AND_ASSIGN(TraceScopedTrackableObject); |
| 1584 }; | 1584 }; |
| 1585 | 1585 |
| 1586 } // namespace debug | 1586 } // namespace debug |
| 1587 } // namespace base | 1587 } // namespace base |
| 1588 | 1588 |
| 1589 #endif /* BASE_DEBUG_TRACE_EVENT_H_ */ | 1589 #endif /* BASE_DEBUG_TRACE_EVENT_H_ */ |
| OLD | NEW |