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

Unified Diff: chrome/test/pyautolib/pyauto.py

Issue 11473019: [cros,rlz] Remove RLZ checkbox from OOBE UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add back old strings Created 8 years 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 | « chrome/common/pref_names.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/pyauto.py
diff --git a/chrome/test/pyautolib/pyauto.py b/chrome/test/pyautolib/pyauto.py
index be8f3f228874c21216638c380fe82a7427f33b72..c05562ebe7ebc0568f21c9732587535fa7393cf3 100755
--- a/chrome/test/pyautolib/pyauto.py
+++ b/chrome/test/pyautolib/pyauto.py
@@ -4530,8 +4530,7 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase):
cmd_dict = { 'command': 'AcceptOOBENetworkScreen' }
return self._GetResultFromJSONRequest(cmd_dict, windex=None)
- def AcceptOOBEEula(self, accepted, usage_stats_reporting=False,
- rlz_enabled=False):
+ def AcceptOOBEEula(self, accepted, usage_stats_reporting=False):
"""Accepts OOBE EULA and advances to the next screen.
Assumes that we're already at the OOBE EULA screen.
@@ -4539,7 +4538,6 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase):
Args:
accepted: Boolean indicating whether the EULA should be accepted.
usage_stats_reporting: Boolean indicating whether UMA should be enabled.
- rlz_enabled: Boolean indicating whether RLZ should be enabled.
Returns:
A dictionary with the following keys:
@@ -4551,8 +4549,7 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase):
"""
cmd_dict = { 'command': 'AcceptOOBEEula',
'accepted': accepted,
- 'usage_stats_reporting': usage_stats_reporting,
- 'rlz_enabled': rlz_enabled }
+ 'usage_stats_reporting': usage_stats_reporting }
return self._GetResultFromJSONRequest(cmd_dict, windex=None)
def CancelOOBEUpdate(self):
« no previous file with comments | « chrome/common/pref_names.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698