Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: telemetry/telemetry/testing/fakes/__init__.py

Issue 2871803002: Expose browser command line via SystemInfo. (Closed)
Patch Set: Update FakeSystemInfo to new API. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « telemetry/telemetry/internal/platform/system_info.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: telemetry/telemetry/testing/fakes/__init__.py
diff --git a/telemetry/telemetry/testing/fakes/__init__.py b/telemetry/telemetry/testing/fakes/__init__.py
index 37280162b093b6e9fcf8ad636083dc3c74e94f8d..d1c857a0dcc06370ebe65aef225b4dcc3a79263b 100644
--- a/telemetry/telemetry/testing/fakes/__init__.py
+++ b/telemetry/telemetry/testing/fakes/__init__.py
@@ -187,10 +187,10 @@ class FakeSharedPageState(shared_page_state.SharedPageState):
class FakeSystemInfo(system_info.SystemInfo):
- def __init__(self, model_name='', gpu_dict=None):
+ def __init__(self, model_name='', gpu_dict=None, command_line=''):
if gpu_dict == None:
gpu_dict = fake_gpu_info.FAKE_GPU_INFO
- super(FakeSystemInfo, self).__init__(model_name, gpu_dict)
+ super(FakeSystemInfo, self).__init__(model_name, gpu_dict, command_line)
class _FakeBrowserFinderOptions(browser_options.BrowserFinderOptions):
« no previous file with comments | « telemetry/telemetry/internal/platform/system_info.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698