Index: chrome/browser/resources/md_user_manager/profile_browser_proxy.js |
diff --git a/chrome/browser/resources/md_user_manager/profile_browser_proxy.js b/chrome/browser/resources/md_user_manager/profile_browser_proxy.js |
index 1712a8a16d0a7d8ce53ec17f633a00b1db4f7b2b..cfc9a4d66f29fd1de5679fec5ade012343fa90e0 100644 |
--- a/chrome/browser/resources/md_user_manager/profile_browser_proxy.js |
+++ b/chrome/browser/resources/md_user_manager/profile_browser_proxy.js |
@@ -75,8 +75,9 @@ cr.define('signin', function() { |
* @param {string} custodianProfilePath Profile path of the custodian if |
* the new profile is supervised. |
*/ |
- createProfile: function(profileName, profileIconUrl, createShortcut, |
- isSupervised, supervisedUserId, custodianProfilePath) { |
+ createProfile: function( |
+ profileName, profileIconUrl, createShortcut, isSupervised, |
+ supervisedUserId, custodianProfilePath) { |
assertNotReached(); |
}, |
@@ -177,11 +178,13 @@ cr.define('signin', function() { |
}, |
/** @override */ |
- createProfile: function(profileName, profileIconUrl, createShortcut, |
- isSupervised, supervisedUserId, custodianProfilePath) { |
- chrome.send('createProfile', |
- [profileName, profileIconUrl, createShortcut, isSupervised, |
- supervisedUserId, custodianProfilePath]); |
+ createProfile: function( |
+ profileName, profileIconUrl, createShortcut, isSupervised, |
+ supervisedUserId, custodianProfilePath) { |
+ chrome.send('createProfile', [ |
+ profileName, profileIconUrl, createShortcut, isSupervised, |
+ supervisedUserId, custodianProfilePath |
+ ]); |
}, |
/** @override */ |