| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 175 |
| 176 void DeliverObservationsTimerFired(TimerBase*); | 176 void DeliverObservationsTimerFired(TimerBase*); |
| 177 | 177 |
| 178 PerformanceEntryVector frame_timing_buffer_; | 178 PerformanceEntryVector frame_timing_buffer_; |
| 179 unsigned frame_timing_buffer_size_; | 179 unsigned frame_timing_buffer_size_; |
| 180 PerformanceEntryVector resource_timing_buffer_; | 180 PerformanceEntryVector resource_timing_buffer_; |
| 181 unsigned resource_timing_buffer_size_; | 181 unsigned resource_timing_buffer_size_; |
| 182 PerformanceEntryVector server_timing_buffer_; | 182 PerformanceEntryVector server_timing_buffer_; |
| 183 Member<PerformanceEntry> navigation_timing_; | 183 Member<PerformanceEntry> navigation_timing_; |
| 184 Member<UserTiming> user_timing_; | 184 Member<UserTiming> user_timing_; |
| 185 Member<PerformanceEntry> first_paint_timing_; |
| 186 Member<PerformanceEntry> first_contentful_paint_timing_; |
| 185 | 187 |
| 186 double time_origin_; | 188 double time_origin_; |
| 187 | 189 |
| 188 PerformanceEntryTypeMask observer_filter_options_; | 190 PerformanceEntryTypeMask observer_filter_options_; |
| 189 PerformanceObservers observers_; | 191 PerformanceObservers observers_; |
| 190 PerformanceObservers active_observers_; | 192 PerformanceObservers active_observers_; |
| 191 PerformanceObservers suspended_observers_; | 193 PerformanceObservers suspended_observers_; |
| 192 TaskRunnerTimer<PerformanceBase> deliver_observations_timer_; | 194 TaskRunnerTimer<PerformanceBase> deliver_observations_timer_; |
| 193 }; | 195 }; |
| 194 | 196 |
| 195 } // namespace blink | 197 } // namespace blink |
| 196 | 198 |
| 197 #endif // PerformanceBase_h | 199 #endif // PerformanceBase_h |
| OLD | NEW |