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

Side by Side Diff: Source/modules/performance/WorkerPerformance.h

Issue 1100813004: Offer User Timing in workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 15 matching lines...) Expand all
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 WorkerPerformance_h 31 #ifndef WorkerPerformance_h
32 #define WorkerPerformance_h 32 #define WorkerPerformance_h
33 33
34 #include "bindings/core/v8/ScriptWrappable.h" 34 #include "bindings/core/v8/ScriptWrappable.h"
35 #include "core/dom/ContextLifecycleObserver.h" 35 #include "core/dom/ContextLifecycleObserver.h"
36 #include "core/timing/PerformanceBase.h"
36 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
37 #include "wtf/Forward.h" 38 #include "wtf/Forward.h"
38 39
39 namespace blink { 40 namespace blink {
40 41
41 class ExecutionContext; 42 class ExecutionContext;
42 class MemoryInfo; 43 class MemoryInfo;
44 class WorkerGlobalScope;
43 45
44 class WorkerPerformance final : public GarbageCollected<WorkerPerformance>, publ ic ScriptWrappable { 46 class WorkerPerformance final : public PerformanceBase, public ContextLifecycleO bserver {
45 DEFINE_WRAPPERTYPEINFO(); 47 DEFINE_WRAPPERTYPEINFO();
46 public: 48 public:
47 static WorkerPerformance* create() 49 static WorkerPerformance* create(WorkerGlobalScope* context)
48 { 50 {
49 return new WorkerPerformance(); 51 return new WorkerPerformance(context);
50 } 52 }
51 53
52 double now(ExecutionContext*) const; 54 virtual ExecutionContext* executionContext() const override;
55
53 MemoryInfo* memory(); 56 MemoryInfo* memory();
54 57
55 DECLARE_TRACE(); 58 DECLARE_VIRTUAL_TRACE();
56 59
57 private: 60 private:
58 WorkerPerformance(); 61 WorkerPerformance(WorkerGlobalScope*);
kinuko 2015/06/04 08:21:23 nit: explicit
Kunihiko Sakamoto 2015/06/05 03:43:56 Done.
59 62
60 Member<MemoryInfo> m_memoryInfo; 63 Member<MemoryInfo> m_memoryInfo;
61 }; 64 };
62 65
63 } // namespace blink 66 } // namespace blink
64 67
65 #endif // WorkerPerformance_h 68 #endif // WorkerPerformance_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698