| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "wtf/Vector.h" | 47 #include "wtf/Vector.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class ExceptionState; | 51 class ExceptionState; |
| 52 class LocalFrame; | 52 class LocalFrame; |
| 53 class PerformanceObserver; | 53 class PerformanceObserver; |
| 54 class PerformanceTiming; | 54 class PerformanceTiming; |
| 55 class ResourceResponse; | 55 class ResourceResponse; |
| 56 class ResourceTimingInfo; | 56 class ResourceTimingInfo; |
| 57 class SecurityOrigin; |
| 57 class UserTiming; | 58 class UserTiming; |
| 58 | 59 |
| 59 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; | 60 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; |
| 60 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; | 61 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; |
| 61 | 62 |
| 62 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { | 63 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { |
| 63 friend class PerformanceBaseTest; | 64 friend class PerformanceBaseTest; |
| 64 | 65 |
| 65 public: | 66 public: |
| 66 ~PerformanceBase() override; | 67 ~PerformanceBase() override; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 PerformanceEntryTypeMask m_observerFilterOptions; | 179 PerformanceEntryTypeMask m_observerFilterOptions; |
| 179 PerformanceObservers m_observers; | 180 PerformanceObservers m_observers; |
| 180 PerformanceObservers m_activeObservers; | 181 PerformanceObservers m_activeObservers; |
| 181 PerformanceObservers m_suspendedObservers; | 182 PerformanceObservers m_suspendedObservers; |
| 182 TaskRunnerTimer<PerformanceBase> m_deliverObservationsTimer; | 183 TaskRunnerTimer<PerformanceBase> m_deliverObservationsTimer; |
| 183 }; | 184 }; |
| 184 | 185 |
| 185 } // namespace blink | 186 } // namespace blink |
| 186 | 187 |
| 187 #endif // PerformanceBase_h | 188 #endif // PerformanceBase_h |
| OLD | NEW |