| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Intel Inc. All rights reserved. | 3 * Copyright (C) 2012 Intel Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef PerformanceEntry_h | 32 #ifndef PerformanceEntry_h |
| 33 #define PerformanceEntry_h | 33 #define PerformanceEntry_h |
| 34 | 34 |
| 35 #include "bindings/core/v8/ScriptWrappable.h" | 35 #include "bindings/core/v8/ScriptWrappable.h" |
| 36 #include "core/CoreExport.h" | 36 #include "core/CoreExport.h" |
| 37 #include "core/dom/DOMHighResTimeStamp.h" | 37 #include "core/dom/DOMHighResTimeStamp.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include "wtf/text/WTFString.h" | 39 #include "platform/wtf/text/WTFString.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class ScriptState; | 43 class ScriptState; |
| 44 class ScriptValue; | 44 class ScriptValue; |
| 45 class V8ObjectBuilder; | 45 class V8ObjectBuilder; |
| 46 | 46 |
| 47 using PerformanceEntryType = unsigned; | 47 using PerformanceEntryType = unsigned; |
| 48 using PerformanceEntryTypeMask = unsigned; | 48 using PerformanceEntryTypeMask = unsigned; |
| 49 | 49 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 const String name_; | 107 const String name_; |
| 108 const String entry_type_; | 108 const String entry_type_; |
| 109 const double start_time_; | 109 const double start_time_; |
| 110 const double duration_; | 110 const double duration_; |
| 111 const PerformanceEntryType entry_type_enum_; | 111 const PerformanceEntryType entry_type_enum_; |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 } // namespace blink | 114 } // namespace blink |
| 115 | 115 |
| 116 #endif // PerformanceEntry_h | 116 #endif // PerformanceEntry_h |
| OLD | NEW |