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

Side by Side Diff: telemetry/telemetry/internal/app/possible_app.py

Issue 1874473006: [Telemetry] Move extensions_to_load and output_profile_path into browser_options (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Fix test Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | telemetry/telemetry/internal/backends/chrome/android_browser_backend.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 class PossibleApp(object): 6 class PossibleApp(object):
7 """A factory class that can be used to create a running instance of app. 7 """A factory class that can be used to create a running instance of app.
8 8
9 Call Create() to launch the app and begin manipulating it. 9 Call Create() to launch the app and begin manipulating it.
10 """ 10 """
(...skipping 20 matching lines...) Expand all
31 def platform(self): 31 def platform(self):
32 self._InitPlatformIfNeeded() 32 self._InitPlatformIfNeeded()
33 return self._platform 33 return self._platform
34 34
35 def _InitPlatformIfNeeded(self): 35 def _InitPlatformIfNeeded(self):
36 raise NotImplementedError() 36 raise NotImplementedError()
37 37
38 def Create(self, finder_options): 38 def Create(self, finder_options):
39 raise NotImplementedError() 39 raise NotImplementedError()
40 40
41 def SupportsOptions(self, finder_options): 41 def SupportsOptions(self, browser_options):
42 """Tests for extension support.""" 42 """Tests for extension support."""
43 raise NotImplementedError() 43 raise NotImplementedError()
OLDNEW
« no previous file with comments | « no previous file | telemetry/telemetry/internal/backends/chrome/android_browser_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698