/external/chromium_org/tools/telemetry/telemetry/core/ |
possible_browser.py | 10 def __init__(self, browser_type, finder_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
|
browser_finder.py | 46 if options.browser_type == 'exact' and options.browser_executable == None: 49 if options.browser_type != 'exact' and options.browser_executable != None: 53 if options.browser_type == 'cros-chrome' and options.cros_remote == None: 55 'browser_type=cros-chrome requires cros_remote be set.') 56 if (options.browser_type != 'cros-chrome' and 57 options.browser_type != 'cros-chrome-guest' and 65 if (options.browser_type and options.browser_type != 'any' and 66 options.browser_type not in finder.ALL_BROWSER_TYPES): 74 if options.browser_type == None [all...] |
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 | 23 extension_path, options.browser_type) 70 extension_path, options.browser_type)) 77 extension_path, options.browser_type) 100 d, options.browser_type) 142 extension_path, options.browser_type, is_component=True) 166 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 if not browser_type: 17 browser_type.startswith('cros')):
|
cros_browser_finder.py | 24 def __init__(self, browser_type, finder_options, cri, is_guest): 25 super(PossibleCrOSBrowser, self).__init__(browser_type, finder_options) 26 assert browser_type in ALL_BROWSER_TYPES, \ 27 'Please add %s to ALL_BROWSER_TYPES' % browser_type 32 return 'PossibleCrOSBrowser(browser_type=%s)' % self.browser_type 41 self.browser_type, browser_options, self._cri, self._is_guest, 60 if b.browser_type == 'system':
|
desktop_browser_finder.py | 34 def __init__(self, browser_type, finder_options, executable, flash_path, 36 super(PossibleDesktopBrowser, self).__init__(browser_type, finder_options) 37 assert browser_type in ALL_BROWSER_TYPES, \ 38 'Please add %s to ALL_BROWSER_TYPES' % browser_type 46 return 'PossibleDesktopBrowser(browser_type=%s, executable=%s)' % ( 47 self.browser_type, self._local_executable) 144 def AddIfFound(browser_type, build_dir, type_dir, app_name, content_shell): 148 is_64 = browser_type.endswith('_x64') 150 browser_type, finder_options, app, 230 ','.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_memreport_profiler.py | 31 def is_supported(cls, browser_type): 32 if browser_type == 'any': 34 return browser_type.startswith('android')
|
android_screen_recorder_profiler.py | 29 def is_supported(cls, browser_type): 30 if browser_type == 'any': 32 return browser_type.startswith('android')
|
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'))
|
android_systrace_profiler.py | 48 def is_supported(cls, browser_type): 49 if browser_type == 'any': 51 return browser_type.startswith('android')
|
java_heap_profiler.py | 34 def is_supported(cls, browser_type): 35 if browser_type == 'any': 37 return browser_type.startswith('android')
|
oomkiller_profiler.py | 52 def is_supported(cls, browser_type): 53 if browser_type == 'any': 55 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'))
|
profiler_finder.py | 27 if p.is_supported(browser_type='any')])
|
trace_profiler.py | 23 def is_supported(cls, browser_type):
|
vtune_profiler.py | 87 def is_supported(cls, browser_type): 90 if (browser_type.startswith('android') or 91 browser_type.startswith('cros')): 101 def CustomizeBrowserOptions(cls, browser_type, options):
|
/external/chromium_org/tools/telemetry/telemetry/unittest/ |
options_for_unittests.py | 14 def Set(options, browser_type): 19 _browser_type = browser_type
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/ |
webdriver_desktop_browser_finder.py | 39 def __init__(self, browser_type, finder_options): 40 super(PossibleWebDriverBrowser, self).__init__(browser_type, finder_options) 41 assert browser_type in ALL_BROWSER_TYPES, \ 42 'Please add %s to ALL_BROWSER_TYPES' % browser_type 67 def __init__(self, browser_type, finder_options, architecture): 68 super(PossibleDesktopIE, self).__init__(browser_type, finder_options)
|
/external/chromium_org/tools/telemetry/examples/ |
list_available_browsers | 15 options.browser_type = 'list';
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
html_page_measurement_results_unittest.py | 51 output_file, 'test_name', False, False, 'browser_type') 65 "platform": "browser_type", 106 output_file, 'test_name', False, False, 'browser_type') 120 "platform": "browser_type", 157 "platform": "browser_type", 199 output_file, 'test_name', True, False, 'browser_type') 212 "platform": "browser_type",
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/ |
browser_backend.py | 19 assert browser_options.browser_type 20 self.browser_type = browser_options.browser_type
|
/external/chromium/chrome/browser/sync/protocol/ |
proto_enum_conversions.h | 22 sync_pb::SessionWindow::BrowserType browser_type);
|