| Index: tools/telemetry/telemetry/page/actions/wait.py
|
| diff --git a/tools/telemetry/telemetry/page/actions/wait.py b/tools/telemetry/telemetry/page/actions/wait.py
|
| index 3689a2b7a703101a8d378a8f90cc0c03954a1a27..92d82f9c90651d9cb9d330ac3fdaa43fb0ef2c96 100644
|
| --- a/tools/telemetry/telemetry/page/actions/wait.py
|
| +++ b/tools/telemetry/telemetry/page/actions/wait.py
|
| @@ -19,7 +19,7 @@ class WaitAction(page_action.PageAction):
|
|
|
| def RunAction(self, page, tab, previous_action):
|
| tab.ExecuteJavaScript(
|
| - 'console.time("' + self.GetTimelineMarkerLabel() + '")')
|
| + 'console.time("' + self.GetTimelineMarkerName() + '")')
|
|
|
| if hasattr(self, 'seconds'):
|
| time.sleep(self.seconds)
|
| @@ -69,7 +69,7 @@ class WaitAction(page_action.PageAction):
|
| raise page_action.PageActionFailed('No wait condition found')
|
|
|
| tab.ExecuteJavaScript(
|
| - 'console.timeEnd("' + self.GetTimelineMarkerLabel() + '")')
|
| + 'console.timeEnd("' + self.GetTimelineMarkerName() + '")')
|
|
|
| - def GetTimelineMarkerLabel(self):
|
| + def GetTimelineMarkerName(self):
|
| return 'WaitAction::RunAction'
|
|
|