Searched refs:browser_type (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbrowser_finder.py34 if options.browser_type == 'exact' and options.browser_executable == None:
37 if options.browser_type != 'exact' and options.browser_executable != None:
41 if options.browser_type == 'cros-chrome' and options.cros_remote == None:
43 'browser_type=cros-chrome requires cros_remote be set.')
44 if (options.browser_type != 'cros-chrome' and
45 options.browser_type != 'cros-chrome-guest' and
48 'cros_remote requires browser_type=cros-chrome or cros-chrome-guest.')
58 if options.browser_type == None:
61 default_browser.browser_type)
62 options.browser_type
[all...]
H A Dpossible_browser.py10 def __init__(self, browser_type, options):
11 self._browser_type = browser_type
15 return 'PossibleBrowser(browser_type=%s)' % self.browser_type
18 def browser_type(self): member in class:PossibleBrowser
H A Dextension_to_load.py15 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')))
H A Dextension_unittest.py22 extension_path, options.browser_type)
68 extension_path, options.browser_type))
76 extension_path, options.browser_type)
99 d, options.browser_type)
138 extension_path, options.browser_type, is_component=True)
161 browser_type=options.browser_type,
H A Dbrowser_options.py22 def __init__(self, browser_type=None):
25 self.browser_type = browser_type
67 dest='browser_type',
194 if self.browser_executable and not self.browser_type:
195 self.browser_type = 'exact'
196 if self.browser_type == 'list':
H A Dbrowser_unittest.py26 options.browser_type.startswith('android') or
27 options.browser_type.startswith('cros'))
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Doptions_for_unittests.py14 def Set(options, browser_type):
19 _browser_type = browser_type
H A Drun_tests.py92 default_options.browser_type = 'any'
118 default_options.browser_type)
123 browser_to_create.browser_type)
/external/chromium/chrome/browser/sync/protocol/
H A Dproto_enum_conversions.h22 sync_pb::SessionWindow::BrowserType browser_type);
H A Dproto_enum_conversions.cc24 sync_pb::SessionWindow::BrowserType browser_type) {
27 switch (browser_type) {
23 GetBrowserTypeString( sync_pb::SessionWindow::BrowserType browser_type) argument
/external/chromium_org/tools/
H A Drun-bisect-manual-test.py32 options.browser_type)
44 if 'cros' in options.browser_type:
55 elif 'android' in options.browser_type:
95 if not options.browser_type:
H A Dbisect-manual-test.py22 print 'Starting browser: %s.' % options.browser_type
/external/chromium_org/tools/telemetry/examples/
H A Dlist_available_browsers15 options.browser_type = 'list';
/external/chromium_org/tools/telemetry/telemetry/core/chrome/
H A Dcros_browser_finder.py23 def __init__(self, browser_type, options, cri, is_guest):
24 super(PossibleCrOSBrowser, self).__init__(browser_type, options)
29 return 'PossibleCrOSBrowser(browser_type=%s)' % self.browser_type
36 self.browser_type, self._options, self._cri, self._is_guest)
49 if b.browser_type == 'system':
H A Ddesktop_browser_finder.py35 def __init__(self, browser_type, options, executable, flash_path,
37 super(PossibleDesktopBrowser, self).__init__(browser_type, options)
45 return 'PossibleDesktopBrowser(browser_type=%s)' % self.browser_type
165 def AddIfFound(browser_type, build_dir, type_dir, app_name, content_shell):
169 browsers.append(PossibleDesktopBrowser(browser_type, options,
248 ','.join([b.browser_type for b in browsers]))
H A Dandroid_browser_finder.py45 def __init__(self, browser_type, options, backend_settings):
46 super(PossibleAndroidBrowser, self).__init__(browser_type, options)
50 return 'PossibleAndroidBrowser(browser_type=%s)' % self.browser_type
H A Ddesktop_browser_finder_unittest.py35 return [b.browser_type for b in browsers]
37 def has_type(array, browser_type):
38 return len([x for x in array if x.browser_type == browser_type]) != 0
/external/chromium_org/sync/protocol/
H A Dproto_enum_conversions.h24 sync_pb::SessionWindow::BrowserType browser_type);
/external/chromium_org/tools/telemetry/telemetry/core/backends/
H A Dbrowser_backend.py19 self.browser_type = options.browser_type
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Diprofiler_profiler.py93 return (not options.browser_type.startswith('android') and
94 not options.browser_type.startswith('cros'))
H A Dsample_profiler.py83 return (not options.browser_type.startswith('android') and
84 not options.browser_type.startswith('cros'))
H A Dperf_profiler.py83 if options and (options.browser_type.startswith('android')
84 or options.browser_type.startswith('cros')):
H A Dtcpdump_profiler.py102 if options and options.browser_type.startswith('cros'):
108 return options.browser_type.startswith('android')
H A Dtcmalloc_heap_profiler.py116 if options and options.browser_type.startswith('cros'):
122 return options.browser_type.startswith('android')
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dhtml_page_measurement_results.py33 def __init__(self, output_stream, test_name, reset_results, browser_type,
43 'platform': browser_type,

Completed in 413 milliseconds

12