diff options
author | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 01:19:50 +0000 |
---|---|---|
committer | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 01:19:50 +0000 |
commit | fea25d8d0968d61d3fc15b88e2100e5221075a65 (patch) | |
tree | 21cea2ca85b76b07e93039c710ee16eea758c732 /chrome/browser/automation | |
parent | 2d69299a7881760d261b7c3b8f2c7d07c260d10a (diff) | |
download | chromium_src-fea25d8d0968d61d3fc15b88e2100e5221075a65.zip chromium_src-fea25d8d0968d61d3fc15b88e2100e5221075a65.tar.gz chromium_src-fea25d8d0968d61d3fc15b88e2100e5221075a65.tar.bz2 |
Add a "managed user" checkbox to the user creation dialog.
Selecting this checkbox will set a "managed" flag in the profile (both in the profiles cache in Local State, and in the profile's Preferences), and open the managed user settings page the first time it is opened.
TBR=ben@chromium.org
BUG=163884
Review URL: https://chromiumcodereview.appspot.com/11412320
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173821 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation')
-rw-r--r-- | chrome/browser/automation/testing_automation_provider.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc index 62a2254..45670f5 100644 --- a/chrome/browser/automation/testing_automation_provider.cc +++ b/chrome/browser/automation/testing_automation_provider.cc @@ -1091,7 +1091,7 @@ void TestingAutomationProvider::OpenNewBrowserWindowWithNewProfile( new BrowserOpenedWithNewProfileNotificationObserver(this, reply_message); profile_manager->CreateMultiProfileAsync( string16(), string16(), ProfileManager::CreateCallback(), - chrome::HOST_DESKTOP_TYPE_NATIVE); + chrome::HOST_DESKTOP_TYPE_NATIVE, false); } // Sample json input: { "command": "GetMultiProfileInfo" } |