Index: chrome/browser/resources/user_manager/user_manager.js |
diff --git a/chrome/browser/resources/user_manager/user_manager.js b/chrome/browser/resources/user_manager/user_manager.js |
index 3cca699c7bcb1cf046204c405b3f9306a0604ef9..39d76d4764abe302a71089b17d7563c0322f5290 100644 |
--- a/chrome/browser/resources/user_manager/user_manager.js |
+++ b/chrome/browser/resources/user_manager/user_manager.js |
@@ -58,11 +58,10 @@ cr.define('cr.ui', function() { |
/** |
* Open a new browser for the given profile. |
- * @param {string} email The user's email, if signed in. |
- * @param {string} displayName The user's display name. |
+ * @param {string} profilePath The profile's path. |
*/ |
- Oobe.launchUser = function(email, displayName) { |
- chrome.send('launchUser', [email, displayName]); |
+ Oobe.launchUser = function(profilePath) { |
+ chrome.send('launchUser', [profilePath]); |
}; |
/** |