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

Unified Diff: tools/chrome_remote_control/chrome_remote_control/browser_options.py

Issue 10965027: Add web page replay to chrome_remote_control. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replace CreateForwarder with CreateReplayServer Created 8 years, 2 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
Index: tools/chrome_remote_control/chrome_remote_control/browser_options.py
diff --git a/tools/chrome_remote_control/chrome_remote_control/browser_options.py b/tools/chrome_remote_control/chrome_remote_control/browser_options.py
index 4cc59de17b1e8e8cbaafc9cdeed2f0142fcd20a2..a1f2b00a45785c3fa28224a23881e29d1b2dac68 100644
--- a/tools/chrome_remote_control/chrome_remote_control/browser_options.py
+++ b/tools/chrome_remote_control/chrome_remote_control/browser_options.py
@@ -81,6 +81,13 @@ class BrowserOptions(optparse.Values):
help='When possible, will display the stdout of the process')
parser.add_option_group(group)
+ # Page set options
+ group = optparse.OptionGroup(parser, 'Page set options')
+ group.add_option('--record', action='store_true',
+ dest='record',
+ help='Record to the page set archive')
+ parser.add_option_group(group)
+
# Debugging options
group = optparse.OptionGroup(parser, 'When things go wrong')
group.add_option(

Powered by Google App Engine
This is Rietveld 408576698