| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ExceptionState; | 50 class ExceptionState; |
| 51 class LocalFrame; | 51 class LocalFrame; |
| 52 class PerformanceObserver; | 52 class PerformanceObserver; |
| 53 class PerformanceTiming; | 53 class PerformanceTiming; |
| 54 class ResourceResponse; |
| 54 class ResourceTimingInfo; | 55 class ResourceTimingInfo; |
| 55 class UserTiming; | 56 class UserTiming; |
| 56 | 57 |
| 57 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; | 58 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; |
| 58 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; | 59 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; |
| 59 | 60 |
| 60 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { | 61 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { |
| 61 friend class PerformanceBaseTest; | 62 friend class PerformanceBaseTest; |
| 62 | 63 |
| 63 public: | 64 public: |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 PerformanceEntryTypeMask m_observerFilterOptions; | 169 PerformanceEntryTypeMask m_observerFilterOptions; |
| 169 PerformanceObservers m_observers; | 170 PerformanceObservers m_observers; |
| 170 PerformanceObservers m_activeObservers; | 171 PerformanceObservers m_activeObservers; |
| 171 PerformanceObservers m_suspendedObservers; | 172 PerformanceObservers m_suspendedObservers; |
| 172 Timer<PerformanceBase> m_deliverObservationsTimer; | 173 Timer<PerformanceBase> m_deliverObservationsTimer; |
| 173 }; | 174 }; |
| 174 | 175 |
| 175 } // namespace blink | 176 } // namespace blink |
| 176 | 177 |
| 177 #endif // PerformanceBase_h | 178 #endif // PerformanceBase_h |
| OLD | NEW |