| 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/dom/DOMHighResTimeStamp.h" | 36 #include "core/dom/DOMHighResTimeStamp.h" |
| 37 #include "core/events/EventTarget.h" | 37 #include "core/events/EventTarget.h" |
| 38 #include "core/loader/FrameLoaderTypes.h" | 38 #include "core/loader/FrameLoaderTypes.h" |
| 39 #include "core/timing/PerformanceEntry.h" | 39 #include "core/timing/PerformanceEntry.h" |
| 40 #include "core/timing/PerformanceNavigationTiming.h" | 40 #include "core/timing/PerformanceNavigationTiming.h" |
| 41 #include "core/timing/PerformancePaintTiming.h" | 41 #include "core/timing/PerformancePaintTiming.h" |
| 42 #include "platform/Timer.h" | 42 #include "platform/Timer.h" |
| 43 #include "platform/heap/Handle.h" | 43 #include "platform/heap/Handle.h" |
| 44 #include "wtf/Forward.h" | 44 #include "platform/wtf/Forward.h" |
| 45 #include "wtf/HashSet.h" | 45 #include "platform/wtf/HashSet.h" |
| 46 #include "wtf/ListHashSet.h" | 46 #include "platform/wtf/ListHashSet.h" |
| 47 #include "wtf/Vector.h" | 47 #include "platform/wtf/Vector.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class ExceptionState; | 51 class ExceptionState; |
| 52 class PerformanceObserver; | 52 class PerformanceObserver; |
| 53 class PerformanceTiming; | 53 class PerformanceTiming; |
| 54 class ResourceResponse; | 54 class ResourceResponse; |
| 55 class ResourceTimingInfo; | 55 class ResourceTimingInfo; |
| 56 class SecurityOrigin; | 56 class SecurityOrigin; |
| 57 class UserTiming; | 57 class UserTiming; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 PerformanceEntryTypeMask observer_filter_options_; | 179 PerformanceEntryTypeMask observer_filter_options_; |
| 180 PerformanceObservers observers_; | 180 PerformanceObservers observers_; |
| 181 PerformanceObservers active_observers_; | 181 PerformanceObservers active_observers_; |
| 182 PerformanceObservers suspended_observers_; | 182 PerformanceObservers suspended_observers_; |
| 183 TaskRunnerTimer<PerformanceBase> deliver_observations_timer_; | 183 TaskRunnerTimer<PerformanceBase> deliver_observations_timer_; |
| 184 }; | 184 }; |
| 185 | 185 |
| 186 } // namespace blink | 186 } // namespace blink |
| 187 | 187 |
| 188 #endif // PerformanceBase_h | 188 #endif // PerformanceBase_h |
| OLD | NEW |