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

1 2 3

  /external/chromium_org/tools/telemetry/telemetry/unittest/
options_for_unittests.py 14 def Set(options, browser_type):
19 _browser_type = browser_type
run_tests_unittest.py 30 def _GetEnabledTests(self, browser_type, platform):
34 return decorators.IsEnabled(method, browser_type, platform)
  /external/chromium_org/tools/telemetry/telemetry/core/
browser_finder.py 49 if options.browser_type == 'exact' and options.browser_executable == None:
52 if options.browser_type != 'exact' and options.browser_executable != None:
56 if options.browser_type == 'cros-chrome' and options.cros_remote == None:
58 'browser_type=cros-chrome requires cros_remote be set.')
59 if (options.browser_type != 'cros-chrome' and
60 options.browser_type != 'cros-chrome-guest' and
68 if (options.browser_type and options.browser_type != 'any' and
69 options.browser_type not in finder.ALL_BROWSER_TYPES):
77 if options.browser_type == None
    [all...]
possible_browser.py 14 def __init__(self, browser_type, target_os, finder_options):
15 self._browser_type = browser_type
21 return 'PossibleBrowser(browser_type=%s)' % self.browser_type
24 def browser_type(self): member in class:PossibleBrowser
extension_to_load.py 15 def __init__(self, path, browser_type, is_component=False):
28 # browser_type argument to determine how we should encode
31 and not (browser_type.startswith('android')
32 or browser_type.startswith('cros')))
extension_unittest.py 27 extension_path, options.browser_type)
91 extension_path, options.browser_type))
98 extension_path, options.browser_type)
119 d, options.browser_type)
161 extension_path, options.browser_type, is_component=True)
184 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'))):
cros_browser_finder.py 27 def __init__(self, browser_type, finder_options, cri, is_guest):
28 super(PossibleCrOSBrowser, self).__init__(browser_type, 'cros',
30 assert browser_type in ALL_BROWSER_TYPES, \
31 'Please add %s to ALL_BROWSER_TYPES' % browser_type
37 return 'PossibleCrOSBrowser(browser_type=%s)' % self.browser_type
51 self.browser_type, browser_options, self._cri, self._is_guest,
69 if b.browser_type == 'system':
desktop_browser_finder.py 34 def __init__(self, browser_type, finder_options, executable, flash_path,
37 super(PossibleDesktopBrowser, self).__init__(browser_type, target_os,
39 assert browser_type in ALL_BROWSER_TYPES, \
40 'Please add %s to ALL_BROWSER_TYPES' % browser_type
48 return 'PossibleDesktopBrowser(browser_type=%s, executable=%s)' % (
49 self.browser_type, self._local_executable)
155 def AddIfFound(browser_type, build_dir, type_dir, app_name, content_shell):
159 is_64 = browser_type.endswith('_x64')
161 browser_type, finder_options, app,
241 ','.join([b.browser_type for b in browsers])
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
netlog_profiler.py 18 def is_supported(cls, browser_type):
19 return not browser_type.startswith('cros')
22 def CustomizeBrowserOptions(cls, browser_type, options):
23 if browser_type.startswith('android'):
v8_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'):
android_screen_recorder_profiler.py 32 def is_supported(cls, browser_type):
33 if browser_type == 'any':
35 return browser_type.startswith('android')
android_systrace_profiler.py 48 def is_supported(cls, browser_type):
49 if browser_type == 'any':
51 return browser_type.startswith('android')
oomkiller_profiler.py 51 def is_supported(cls, browser_type):
52 if browser_type == 'any':
54 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/
run-bisect-manual-test.py 42 options.browser_type)
58 if 'cros' in options.browser_type:
69 elif 'android-chrome' in options.browser_type:
71 elif 'android' in options.browser_type:
74 cmd.extend(['--target_build_type', options.browser_type.title()])
136 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 39 def __init__(self, browser_type, finder_options):
41 super(PossibleWebDriverBrowser, self).__init__(browser_type, target_os,
43 assert browser_type in ALL_BROWSER_TYPES, \
44 'Please add %s to ALL_BROWSER_TYPES' % browser_type
71 def __init__(self, browser_type, finder_options, architecture):
72 super(PossibleDesktopIE, self).__init__(browser_type, finder_options)
  /external/chromium_org/tools/telemetry/examples/
list_available_browsers 16 options.browser_type = 'list'
  /external/chromium_org/chrome/browser/ui/views/frame/
test_with_browser_view.h 28 TestWithBrowserView(Browser::Type browser_type,
test_with_browser_view.cc 42 Browser::Type browser_type,
45 : BrowserWithTestWindowTest(browser_type,
  /external/chromium_org/tools/perf/measurements/
loading_profile.py 23 if not perf_profiler.PerfProfiler.is_supported(browser_type='any'):
27 browser_type='any', options=options)
  /external/chromium_org/tools/telemetry/telemetry/core/backends/
browser_backend.py 20 assert browser_options.browser_type
21 self.browser_type = browser_options.browser_type

Completed in 811 milliseconds

1 2 3