Home | History | Annotate | Download | only in measurements

Lines Matching refs:tab

39   def WillRunAction(self, page, tab, action):
40 if tab.browser.platform.IsRawDisplayFrameRateSupported():
41 tab.browser.platform.StartRawDisplayFrameRateMeasurement()
42 self._metrics = smoothness.SmoothnessMetrics(tab)
48 def DidRunAction(self, page, tab, action):
49 if tab.browser.platform.IsRawDisplayFrameRateSupported():
50 tab.browser.platform.StopRawDisplayFrameRateMeasurement()
54 def MeasurePage(self, page, tab, results):
60 loading.LoadingMetric().AddResults(tab, results)
62 smoothness.CalcFirstPaintTimeResults(results, tab)
71 if tab.browser.platform.IsRawDisplayFrameRateSupported():
72 for r in tab.browser.platform.GetRawDisplayFrameRateMeasurements():