HomeSort by relevance Sort by last modified time
    Searched refs:browser_type (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/tools/telemetry/telemetry/core/
browser_finder.py 54 if options.browser_type == 'exact' and options.browser_executable == None:
57 if options.browser_type != 'exact' and options.browser_executable != None:
61 if options.browser_type == 'cros-chrome' and options.cros_remote == None:
63 'browser_type=cros-chrome requires cros_remote be set.')
64 if (options.browser_type != 'cros-chrome' and
65 options.browser_type != 'cros-chrome-guest' and
73 if(options.browser_type and options.browser_type != 'any' and
74 options.browser_type not in finder.FindAllBrowserTypes(options)):
82 if options.browser_type == None
    [all...]
possible_browser.py 13 def __init__(self, browser_type, target_os, finder_options,
15 self._browser_type = browser_type
27 return 'PossibleBrowser(browser_type=%s)' % self.browser_type
30 def browser_type(self): member in class:PossibleBrowser
extension_to_load.py 16 def __init__(self, path, browser_type, is_component=False):
29 # browser_type argument to determine how we should encode
32 and not (browser_type.startswith('android')
33 or browser_type.startswith('cros')))
extension_unittest.py 27 extension_path, options.browser_type)
90 extension_path, options.browser_type))
97 extension_path, options.browser_type)
118 d, options.browser_type)
159 extension_path, options.browser_type, is_component=True)
182 browser_type=options.browser_type,
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
chrome_browser_options.py 10 browser_type = br_options.browser_type
13 (browser_type and browser_type.startswith('cros'))):
ios_browser_finder.py 30 def __init__(self, browser_type, finder_options):
31 super(PossibleIOSBrowser, self).__init__(browser_type, 'ios',
93 options.browser_type = 'ios-chrome'
123 for browser_type in browser_types:
124 browsers.append(PossibleIOSBrowser(IOS_BROWSERS[browser_type],
cros_browser_finder.py 24 def __init__(self, browser_type, finder_options, cros_platform, is_guest):
25 super(PossibleCrOSBrowser, self).__init__(browser_type, 'cros',
27 assert browser_type in FindAllBrowserTypes(finder_options), \
29 browser_type)
36 return 'PossibleCrOSBrowser(browser_type=%s)' % self.browser_type
76 if b.browser_type == 'system':
ios_browser_finder_unittest.py 21 self.assertEqual('ios-chrome', browser.browser_type)
desktop_browser_finder.py 21 def __init__(self, browser_type, finder_options, executable, flash_path,
24 super(PossibleDesktopBrowser, self).__init__(browser_type, target_os,
26 assert browser_type in FindAllBrowserTypes(finder_options), \
28 browser_type)
37 self.browser_type, self._local_executable, self._flash_path)
167 def AddIfFound(browser_type, build_dir, type_dir, app_name, content_shell):
171 is_64 = browser_type.endswith('_x64')
173 browser_type, finder_options, app,
253 ','.join([b.browser_type for b in browsers]))
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
netlog_profiler.py 19 def is_supported(cls, browser_type):
20 return not browser_type.startswith('cros')
23 def CustomizeBrowserOptions(cls, browser_type, options):
24 if browser_type.startswith('android'):
v8_profiler.py 20 def is_supported(cls, browser_type):
21 return not browser_type.startswith('cros')
24 def CustomizeBrowserOptions(cls, browser_type, options):
25 if browser_type.startswith('android'):
android_screen_recorder_profiler.py 33 def is_supported(cls, browser_type):
34 if browser_type == 'any':
36 return browser_type.startswith('android')
android_systrace_profiler.py 52 def is_supported(cls, browser_type):
53 if browser_type == 'any':
55 return browser_type.startswith('android')
oomkiller_profiler.py 57 def is_supported(cls, browser_type):
58 if browser_type == 'any':
60 return browser_type.startswith('android')
iprofiler_profiler.py 87 def is_supported(cls, browser_type):
90 if browser_type == 'any':
92 return (not browser_type.startswith('android') and
93 not browser_type.startswith('cros'))
sample_profiler.py 78 def is_supported(cls, browser_type):
81 if browser_type == 'any':
83 return (not browser_type.startswith('android') and
84 not browser_type.startswith('cros'))
__init__.py 32 def is_supported(cls, browser_type):
37 def CustomizeBrowserOptions(cls, browser_type, options):
tcmalloc_heap_profiler.py 111 def is_supported(cls, browser_type):
112 if browser_type.startswith('cros'):
116 if browser_type == 'any':
118 return browser_type.startswith('android')
121 def CustomizeBrowserOptions(cls, browser_type, options):
  /external/chromium_org/tools/telemetry/telemetry/unittest/
run_tests_unittest.py 13 def __init__(self, browser_type, os_name, os_version_name,
15 self.browser_type = browser_type
39 def _GetEnabledTests(self, browser_type, os_name, os_version_name,
45 browser_type, os_name, os_version_name, supports_tab_control))
  /external/chromium_org/tools/
run-bisect-manual-test.py 46 options.browser_type))
62 if 'cros' in options.browser_type:
72 elif 'android-chrome' in options.browser_type:
74 elif 'android' in options.browser_type:
77 cmd.extend(['--target_build_type', options.browser_type.title()])
141 if 'android' not in options.browser_type and sys.platform.startswith('linux'):
  /external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
webdriver_desktop_browser_finder.py 29 def __init__(self, browser_type, finder_options):
31 super(PossibleWebDriverBrowser, self).__init__(browser_type, target_os,
33 assert browser_type in FindAllBrowserTypes(finder_options), \
35 % browser_type)
73 def __init__(self, browser_type, finder_options, architecture):
74 super(PossibleDesktopIE, self).__init__(browser_type, finder_options)
113 for architecture, search_path, browser_type in search_paths:
118 PossibleDesktopIE(browser_type, finder_options, architecture))
  /external/chromium_org/tools/telemetry/examples/
list_available_browsers 16 options.browser_type = 'list'