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

Side by Side Diff: third_party/WebKit/Source/core/timing/PerformanceEntry.h

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (Closed)
Patch Set: Rebase. Created 3 years, 8 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
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698