diff options
author | lizeb <lizeb@chromium.org> | 2015-02-06 06:44:58 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-06 14:45:58 +0000 |
commit | 87e95e5d04220dc68788e0356d7f5ed38b017f69 (patch) | |
tree | 110250de2df419f517488d3baad01a8cfda909d6 /tools/profile_chrome | |
parent | adb1d7096d2c2da9a5843edc718378663587ef91 (diff) | |
download | chromium_src-87e95e5d04220dc68788e0356d7f5ed38b017f69.zip chromium_src-87e95e5d04220dc68788e0356d7f5ed38b017f69.tar.gz chromium_src-87e95e5d04220dc68788e0356d7f5ed38b017f69.tar.bz2 |
Add missing import in chrome_startup_controller.py.
Review URL: https://codereview.chromium.org/907443002
Cr-Commit-Position: refs/heads/master@{#315032}
Diffstat (limited to 'tools/profile_chrome')
-rw-r--r-- | tools/profile_chrome/chrome_startup_controller.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/profile_chrome/chrome_startup_controller.py b/tools/profile_chrome/chrome_startup_controller.py index d685502..87353e3 100644 --- a/tools/profile_chrome/chrome_startup_controller.py +++ b/tools/profile_chrome/chrome_startup_controller.py @@ -7,6 +7,7 @@ import re import time from pylib import flag_changer +from pylib.device import intent from pylib.perf import cache_control from profile_chrome import controllers @@ -39,7 +40,7 @@ class ChromeStartupTracingController(controllers.BaseController): package=self._package_info.package, activity=self._package_info.activity, data=self._url, - extras={'create_new_tab' : True})) + extras={'create_new_tab' : True}), blocking=True) def _TearDownTracing(self): changer = flag_changer.FlagChanger( |