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

Unified Diff: tools/telemetry/telemetry/cros_browser_backend.py

Issue 11882033: Telemetry support for extensions. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: copyright Created 7 years, 10 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 | « tools/telemetry/telemetry/browser_options.py ('k') | tools/telemetry/telemetry/cros_browser_finder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/cros_browser_backend.py
===================================================================
--- tools/telemetry/telemetry/cros_browser_backend.py (revision 182312)
+++ tools/telemetry/telemetry/cros_browser_backend.py (working copy)
@@ -9,11 +9,11 @@
from telemetry import util
class CrOSBrowserBackend(browser_backend.BrowserBackend):
- def __init__(self, browser_type, options, is_content_shell, cri):
- super(CrOSBrowserBackend, self).__init__(is_content_shell, options)
+ def __init__(self, browser_type, options, cri):
+ super(CrOSBrowserBackend, self).__init__(is_content_shell=False,
+ supports_extensions=True, options=options)
# Initialize fields so that an explosion during init doesn't break in Close.
self._options = options
- assert not is_content_shell
self._cri = cri
self._browser_type = browser_type
« no previous file with comments | « tools/telemetry/telemetry/browser_options.py ('k') | tools/telemetry/telemetry/cros_browser_finder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698