| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef PerformanceObserver_h | 5 #ifndef PerformanceObserver_h |
| 6 #define PerformanceObserver_h | 6 #define PerformanceObserver_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "core/timing/PerformanceEntry.h" | 9 #include "core/timing/PerformanceEntry.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "wtf/HashSet.h" | |
| 12 #include "wtf/PassOwnPtr.h" | |
| 13 #include "wtf/PassRefPtr.h" | |
| 14 #include "wtf/RefCounted.h" | |
| 15 #include "wtf/RefPtr.h" | |
| 16 #include "wtf/Vector.h" | 11 #include "wtf/Vector.h" |
| 17 | 12 |
| 18 namespace blink { | 13 namespace blink { |
| 19 | 14 |
| 20 class ExceptionState; | 15 class ExceptionState; |
| 21 class PerformanceBase; | 16 class PerformanceBase; |
| 22 class PerformanceObserverCallback; | 17 class PerformanceObserverCallback; |
| 23 class PerformanceObserver; | 18 class PerformanceObserver; |
| 24 class PerformanceObserverInit; | 19 class PerformanceObserverInit; |
| 25 | 20 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 51 Member<PerformanceObserverCallback> m_callback; | 46 Member<PerformanceObserverCallback> m_callback; |
| 52 WeakMember<PerformanceBase> m_performance; | 47 WeakMember<PerformanceBase> m_performance; |
| 53 PerformanceEntryVector m_performanceEntries; | 48 PerformanceEntryVector m_performanceEntries; |
| 54 PerformanceEntryTypeMask m_filterOptions; | 49 PerformanceEntryTypeMask m_filterOptions; |
| 55 bool m_isRegistered; | 50 bool m_isRegistered; |
| 56 }; | 51 }; |
| 57 | 52 |
| 58 } // namespace blink | 53 } // namespace blink |
| 59 | 54 |
| 60 #endif // PerformanceObserver_h | 55 #endif // PerformanceObserver_h |
| OLD | NEW |