Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: tools/profile_chrome/controllers_unittest.py

Issue 1132993004: [Android] Remove more references to and uses of AndroidCommands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/cygprofile/profile_android_startup.py ('k') | tools/profile_chrome/main.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/profile_chrome/controllers_unittest.py
diff --git a/tools/profile_chrome/controllers_unittest.py b/tools/profile_chrome/controllers_unittest.py
index 1d9a10ca84d90c0c501a6af0560e169a71298ee4..94f36856d36ab57305334568ca812d59913d5799 100644
--- a/tools/profile_chrome/controllers_unittest.py
+++ b/tools/profile_chrome/controllers_unittest.py
@@ -6,19 +6,18 @@ import unittest
from profile_chrome import profiler
-from pylib import android_commands
from pylib.device import device_utils
from pylib.device import intent
class BaseControllerTest(unittest.TestCase):
def setUp(self):
- devices = android_commands.GetAttachedDevices()
+ devices = device_utils.DeviceUtils.HealthyDevices()
self.browser = 'stable'
self.package_info = profiler.GetSupportedBrowsers()[self.browser]
- self.device = device_utils.DeviceUtils(devices[0])
+ self.device = devices[0]
- self.device.old_interface.CloseApplication(self.package_info.package)
+ self.device.ForceStop(self.package_info.package)
self.device.StartActivity(
intent.Intent(activity=self.package_info.activity,
package=self.package_info.package),
« no previous file with comments | « tools/cygprofile/profile_android_startup.py ('k') | tools/profile_chrome/main.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698