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

Unified Diff: tools/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py

Issue 23466013: Make _output_profile_path a member of ChromeBrowserBackend. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/core/backends/chrome/chrome_browser_backend.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py
diff --git a/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py b/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py
index 0af0a6ca8fca25c25778a02962f82c0d3eb16326..5e88cf181977a5cc1e3cc90d121b8674abb5bfdd 100644
--- a/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py
+++ b/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py
@@ -20,11 +20,12 @@ class DesktopBrowserBackend(chrome_browser_backend.ChromeBrowserBackend):
Mac or Windows.
"""
def __init__(self, finder_options, executable, flash_path, is_content_shell,
- browser_directory, output_profile_path=None):
+ browser_directory, output_profile_path):
super(DesktopBrowserBackend, self).__init__(
is_content_shell=is_content_shell,
supports_extensions=not is_content_shell,
- finder_options=finder_options)
+ finder_options=finder_options,
+ output_profile_path=output_profile_path)
# Initialize fields so that an explosion during init doesn't break in Close.
self._proc = None
@@ -50,7 +51,6 @@ class DesktopBrowserBackend(chrome_browser_backend.ChromeBrowserBackend):
self._port = util.GetAvailableLocalPort()
self._profile_dir = None
self._supports_net_benchmarking = True
- self._output_profile_path = output_profile_path
self._tmp_minidump_dir = tempfile.mkdtemp()
self._SetupProfile()
« no previous file with comments | « tools/telemetry/telemetry/core/backends/chrome/chrome_browser_backend.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698