| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef EventTracer_h | 31 #ifndef EventTracer_h |
| 32 #define EventTracer_h | 32 #define EventTracer_h |
| 33 | 33 |
| 34 #include "platform/PlatformExport.h" | |
| 35 #include "wtf/RefCounted.h" | |
| 36 #include "wtf/RefPtr.h" | |
| 37 #include "wtf/text/WTFString.h" | |
| 38 | |
| 39 #include <stdint.h> | 34 #include <stdint.h> |
| 35 #include "sky/engine/platform/PlatformExport.h" |
| 36 #include "sky/engine/wtf/RefCounted.h" |
| 37 #include "sky/engine/wtf/RefPtr.h" |
| 38 #include "sky/engine/wtf/text/WTFString.h" |
| 40 | 39 |
| 41 namespace blink { | 40 namespace blink { |
| 42 | 41 |
| 43 namespace TraceEvent { | 42 namespace TraceEvent { |
| 44 typedef uint64_t TraceEventHandle; | 43 typedef uint64_t TraceEventHandle; |
| 45 | 44 |
| 46 class PLATFORM_EXPORT ConvertableToTraceFormat : public RefCounted<ConvertableTo
TraceFormat> { | 45 class PLATFORM_EXPORT ConvertableToTraceFormat : public RefCounted<ConvertableTo
TraceFormat> { |
| 47 public: | 46 public: |
| 48 virtual String asTraceFormat() const = 0; | 47 virtual String asTraceFormat() const = 0; |
| 49 virtual ~ConvertableToTraceFormat() { } | 48 virtual ~ConvertableToTraceFormat() { } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 76 const char* argNames[], | 75 const char* argNames[], |
| 77 const unsigned char argTypes[], | 76 const unsigned char argTypes[], |
| 78 const unsigned long long argValues[], | 77 const unsigned long long argValues[], |
| 79 unsigned char flags); | 78 unsigned char flags); |
| 80 static void updateTraceEventDuration(const unsigned char* categoryEnabledFla
g, const char* name, TraceEvent::TraceEventHandle); | 79 static void updateTraceEventDuration(const unsigned char* categoryEnabledFla
g, const char* name, TraceEvent::TraceEventHandle); |
| 81 }; | 80 }; |
| 82 | 81 |
| 83 } // namespace blink | 82 } // namespace blink |
| 84 | 83 |
| 85 #endif // EventTracer_h | 84 #endif // EventTracer_h |
| OLD | NEW |