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

Side by Side Diff: tools/telemetry/telemetry/possible_browser.py

Issue 11412238: Proof of concept for running extension API stack through dev tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 class PossibleBrowser(object): 4 class PossibleBrowser(object):
5 """A browser that can be controlled. 5 """A browser that can be controlled.
6 6
7 Call Create() to launch the browser and begin manipulating it.. 7 Call Create() to launch the browser and begin manipulating it..
8 """ 8 """
9 9
10 def __init__(self, browser_type, options): 10 def __init__(self, browser_type, options, supports_extensions):
11 self.browser_type = browser_type 11 self.browser_type = browser_type
12 self._options = options 12 self._options = options
13 self._supports_extensions = supports_extensions
13 14
14 def __repr__(self): 15 def __repr__(self):
15 return 'PossibleBrowser(browser_type=%s)' % self.browser_type 16 return 'PossibleBrowser(browser_type=%s)' % self.browser_type
16 17
17 @property 18 @property
18 def options(self): 19 def options(self):
19 return self._options 20 return self._options
20 21
22 @property
23 def supports_extensions(self):
24 return self._supports_extensions
25
21 def Create(self): 26 def Create(self):
22 raise NotImplementedError() 27 raise NotImplementedError()
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/extension_page.py ('k') | tools/telemetry/unittest_data/auto_provider/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698