| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 29 matching lines...) Expand all Loading... |
| 40 #include "core/timing/PerformanceNavigationTiming.h" | 40 #include "core/timing/PerformanceNavigationTiming.h" |
| 41 #include "platform/Timer.h" | 41 #include "platform/Timer.h" |
| 42 #include "platform/heap/Handle.h" | 42 #include "platform/heap/Handle.h" |
| 43 #include "wtf/Forward.h" | 43 #include "wtf/Forward.h" |
| 44 #include "wtf/HashSet.h" | 44 #include "wtf/HashSet.h" |
| 45 #include "wtf/ListHashSet.h" | 45 #include "wtf/ListHashSet.h" |
| 46 #include "wtf/Vector.h" | 46 #include "wtf/Vector.h" |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class DOMWindow; | |
| 51 class ExceptionState; | 50 class ExceptionState; |
| 52 class LocalFrame; | 51 class LocalFrame; |
| 53 class PerformanceObserver; | 52 class PerformanceObserver; |
| 54 class PerformanceTiming; | 53 class PerformanceTiming; |
| 55 class ResourceTimingInfo; | 54 class ResourceTimingInfo; |
| 56 class UserTiming; | 55 class UserTiming; |
| 57 | 56 |
| 58 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; | 57 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; |
| 59 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; | 58 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; |
| 60 | 59 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 PerformanceEntryTypeMask m_observerFilterOptions; | 158 PerformanceEntryTypeMask m_observerFilterOptions; |
| 160 PerformanceObservers m_observers; | 159 PerformanceObservers m_observers; |
| 161 PerformanceObservers m_activeObservers; | 160 PerformanceObservers m_activeObservers; |
| 162 PerformanceObservers m_suspendedObservers; | 161 PerformanceObservers m_suspendedObservers; |
| 163 Timer<PerformanceBase> m_deliverObservationsTimer; | 162 Timer<PerformanceBase> m_deliverObservationsTimer; |
| 164 }; | 163 }; |
| 165 | 164 |
| 166 } // namespace blink | 165 } // namespace blink |
| 167 | 166 |
| 168 #endif // PerformanceBase_h | 167 #endif // PerformanceBase_h |
| OLD | NEW |