| Index: tools/perf/profile_creators/fast_navigation_profile_extender.py
|
| diff --git a/tools/perf/profile_creators/fast_navigation_profile_extender.py b/tools/perf/profile_creators/fast_navigation_profile_extender.py
|
| index 318198d25d3f445141f77145a9b4f953ff4b4024..f2003d425e728735ffe77041a0bef03eee7eb25d 100644
|
| --- a/tools/perf/profile_creators/fast_navigation_profile_extender.py
|
| +++ b/tools/perf/profile_creators/fast_navigation_profile_extender.py
|
| @@ -120,7 +120,7 @@ class FastNavigationProfileExtender(profile_extender.ProfileExtender):
|
| """Retrives the URL of the tab."""
|
| # TODO(erikchen): Use tab.url instead, which talks to the browser process
|
| # instead of the renderer process. http://crbug.com/486119
|
| - return tab.EvaluateJavaScript2('document.URL', timeout=timeout)
|
| + return tab.EvaluateJavaScript('document.URL', timeout=timeout)
|
|
|
| def _WaitForUrlToChange(self, tab, initial_url, end_time):
|
| """Waits for the tab to navigate away from its initial url.
|
|
|