Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: third_party/WebKit/Source/core/timing/PerformanceBase.h

Issue 2899023003: buffer paint entries so they can queried with getEntries (Closed)
Patch Set: update test Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698