Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
[Telemetry] Remove support of Android chromeshell
Browse files Browse the repository at this point in the history
BUG=526844

Review URL: https://codereview.chromium.org/1326003005

Cr-Commit-Position: refs/heads/master@{#347216}
  • Loading branch information
nedn authored and Commit bot committed Sep 3, 2015
1 parent 9c4c891 commit af00fed
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,6 @@ def GetDevtoolsRemotePort(self, device):
return 'localabstract:content_shell_devtools_remote'


class ChromeShellBackendSettings(AndroidBrowserBackendSettings):
def __init__(self, package):
super(ChromeShellBackendSettings, self).__init__(
activity='org.chromium.chrome.shell.ChromeShellActivity',
cmdline_file='/data/local/tmp/chrome-shell-command-line',
package=package,
pseudo_exec_name='chrome_shell',
supports_tab_control=False)

def GetDevtoolsRemotePort(self, device):
return 'localabstract:chrome_shell_devtools_remote'


class WebviewBackendSettings(AndroidBrowserBackendSettings):
def __init__(self,
package,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@
['org.chromium.content_shell_apk',
android_browser_backend_settings.ContentShellBackendSettings,
'ContentShell.apk'],
'android-chrome-shell':
['org.chromium.chrome.shell',
android_browser_backend_settings.ChromeShellBackendSettings,
'ChromeShell.apk'],
'android-webview':
['org.chromium.webview_shell',
android_browser_backend_settings.WebviewBackendSettings,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,15 +264,3 @@ def testFindAllWithExact(self):
'debug', 'release',
'content-shell-debug', 'content-shell-release',
'system', 'canary']))

def testFindAllWithExactApk(self):
if not self.CanFindAvailableBrowsers():
return

self._finder_options.browser_executable = 'c:\\tmp\\chrome_shell.apk'
types = self.DoFindAllTypes()
self.assertEquals(
set(types),
set(['debug', 'release',
'content-shell-debug', 'content-shell-release',
'system', 'canary']))

0 comments on commit af00fed

Please sign in to comment.