Searched refs:load_time (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/content/public/browser/
H A Dload_notification_details.h21 base::TimeDelta load_time,
25 load_time(load_time),
34 base::TimeDelta load_time; member in struct:content::LoadNotificationDetails
19 LoadNotificationDetails(const GURL& url, PageTransition origin, base::TimeDelta load_time, NavigationController* controller, int session_index) argument
/external/chromium/chrome/browser/
H A Dload_notification_details.h23 base::TimeDelta load_time,
27 load_time_(load_time),
36 base::TimeDelta load_time() const { return load_time_; } function in class:LoadNotificationDetails
21 LoadNotificationDetails(const GURL& url, PageTransition::Type origin, base::TimeDelta load_time, NavigationController* controller, int session_index) argument
/external/chromium_org/tools/site_compare/scrapers/chrome/
H A Dchromebase.py84 load_time = windowing.WaitForThrobber(wnd, (20, 16, 36, 32), timeout)
85 timedout = load_time < 0
153 load_time = windowing.WaitForThrobber(wnd, (20, 16, 36, 32), timeout)
155 timedout = load_time < 0
158 load_time = "timeout"
167 load_time = "crashed"
171 load_time = "crashed"
173 ret.append( (url, load_time) )
/external/chromium_org/tools/site_compare/scrapers/firefox/
H A Dfirefox2.py122 load_time = windowing.WaitForThrobber(wnd, (10, 96, 26, 112), timeout)
123 timedout = load_time < 0
198 load_time = windowing.WaitForThrobber(wnd, (10, 96, 26, 112), timeout)
199 timedout = load_time < 0
202 load_time = "timeout"
216 load_time = "crashed"
221 load_time = "crashed"
223 ret.append( (url, load_time) )
/external/chromium_org/tools/site_compare/scrapers/ie/
H A Die7.py104 load_time = windowing.WaitForThrobber(
106 timedout = load_time < 0
165 load_time = windowing.WaitForThrobber(
167 timedout = load_time < 0
170 load_time = "timeout"
177 load_time = "crashed"
180 load_time = "crashed"
183 ret.append( (url, load_time) )
/external/chromium_org/chrome/test/perf/
H A Dfeature_startup_test.cc83 int load_time; local
84 ASSERT_TRUE(automation()->WaitForInitialNewTabUILoad(&load_time));
91 ASSERT_TRUE(automation()->WaitForInitialNewTabUILoad(&load_time));
93 timings[i] = TimeDelta::FromMilliseconds(load_time);
/external/chromium_org/tools/perf/measurements/
H A Dloading_measurement_analyzer.py51 load_time = float(row['load_time (ms)'])
52 if load_time < 0:
56 if key in ('url', 'load_time (ms)', 'dom_content_loaded_time (ms)'):
70 self.load_times.append((load_time, row['url']))
73 network_time = load_time - cpu_time
75 self.network_percents.append((network_time / load_time, row['url']))
/external/chromium_org/chrome/test/automation/
H A Dautomation_proxy.cc73 void NewTabLoaded(int load_time) { argument
74 server_->SignalNewTabUITab(load_time);
216 bool AutomationProxy::WaitForInitialNewTabUILoad(int* load_time) { argument
218 *load_time = new_tab_ui_load_time_;
229 void AutomationProxy::SignalNewTabUITab(int load_time) { argument
230 new_tab_ui_load_time_ = load_time;
H A Dautomation_proxy.h96 // querying. |load_time| is filled in with how long it took, in milliseconds.
99 bool WaitForInitialNewTabUILoad(int* load_time) WARN_UNUSED_RESULT;
143 // load_time is how long, in ms, the tab contents took to load.
144 void SignalNewTabUITab(int load_time);
/external/chromium/chrome/browser/ui/webui/
H A Dnew_tab_ui_uitest.cc150 int load_time; local
151 ASSERT_TRUE(automation()->WaitForInitialNewTabUILoad(&load_time));
H A Dnew_tab_ui.cc361 base::TimeDelta load_time = last_paint_ - start_; local
362 int load_time_ms = static_cast<int>(load_time.InMilliseconds());
367 UMA_HISTOGRAM_TIMES("NewTabUI load", load_time);
/external/chromium_org/chrome/browser/ui/webui/ntp/
H A Dnew_tab_ui.cc180 base::TimeDelta load_time = last_paint_ - start_; local
181 int load_time_ms = static_cast<int>(load_time.InMilliseconds());
186 UMA_HISTOGRAM_TIMES("NewTabUI load", load_time);
/external/chromium_org/components/autofill/core/browser/
H A Dform_structure.h125 const base::TimeTicks& load_time,
H A Dautofill_manager.h182 const base::TimeTicks& load_time,
H A Dform_structure.cc750 const base::TimeTicks& load_time,
905 // The |load_time| might be unset, in the case that the form was dynamically
907 if (!load_time.is_null()) {
909 DCHECK(submission_time > load_time);
910 base::TimeDelta elapsed = submission_time - load_time;
748 LogQualityMetrics( const AutofillMetrics& metric_logger, const base::TimeTicks& load_time, const base::TimeTicks& interaction_time, const base::TimeTicks& submission_time) const argument
H A Dautofill_manager.cc676 const TimeTicks& load_time,
680 load_time,
674 UploadFormDataAsyncCallback( const FormStructure* submitted_form, const TimeTicks& load_time, const TimeTicks& interaction_time, const TimeTicks& submission_time) argument
H A Dautofill_metrics_unittest.cc235 const base::TimeTicks& load_time,
241 load_time,
/external/chromium/chrome/common/
H A Dmetrics_helpers.h50 // load_time - how long it took to load the page
55 base::TimeDelta load_time);
H A Dmetrics_helpers.cc237 TimeDelta load_time) {
244 WriteAttribute("loadtime", base::Int64ToString(load_time.InMilliseconds()));
233 RecordLoadEvent(int window_id, const GURL& url, PageTransition::Type origin, int session_index, TimeDelta load_time) argument
/external/chromium_org/chrome/browser/net/
H A Dload_time_stats.cc453 base::TimeDelta load_time = local
455 RecordHistograms(load_time, stats, true);
485 base::TimeDelta load_time = base::TimeTicks::Now() - stats->load_start_time(); local
486 RecordHistograms(load_time, stats, false);
H A Dsqlite_server_bound_cert_store.cc262 base::TimeDelta load_time = base::TimeTicks::Now() - start; local
264 load_time,
268 DVLOG(1) << "loaded " << certs->size() << " in " << load_time.InMilliseconds()
/external/chromium_org/chrome/browser/performance_monitor/
H A Dperformance_monitor.cc646 load_details->load_time.ToInternalValue()))));
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_observers.cc168 Details<int> load_time(details);
171 new AutomationMsg_InitialNewTabUILoadComplete(*load_time.ptr()));
/external/chromium_org/chrome/browser/automation/
H A Dautomation_provider_observers.cc225 content::Details<int> load_time(details);
228 new AutomationMsg_InitialNewTabUILoadComplete(*load_time.ptr()));
/external/chromium/chrome/browser/metrics/
H A Dmetrics_service.cc1520 load_details->load_time());

Completed in 8303 milliseconds

12