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

Unified Diff: chrome/browser/resources/options/manage_profile_overlay.js

Issue 543493002: Compile chrome://settings, part 2: reduce from 950 to 400 errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@F_settings
Patch Set: Created 6 years, 3 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: chrome/browser/resources/options/manage_profile_overlay.js
diff --git a/chrome/browser/resources/options/manage_profile_overlay.js b/chrome/browser/resources/options/manage_profile_overlay.js
index 1eab7e6fc54de81464a91b37edc227f1048dee59..432629a2df0625a1f0261327963f34d5031d8e32 100644
--- a/chrome/browser/resources/options/manage_profile_overlay.js
+++ b/chrome/browser/resources/options/manage_profile_overlay.js
@@ -11,7 +11,7 @@ cr.define('options', function() {
* ManageProfileOverlay class
* Encapsulated handling of the 'Manage profile...' overlay page.
* @constructor
- * @class
+ * @extends {cr.ui.pageManager.Page}
*/
function ManageProfileOverlay() {
Page.call(this, 'manageProfile',
@@ -387,7 +387,7 @@ cr.define('options', function() {
}
}
var self = this;
- function getImportHandler(supervisedUser, nameIsUnique) {
+ var getImportHandler = function(supervisedUser, nameIsUnique) {
return function() {
if (supervisedUser.needAvatar || !nameIsUnique) {
PageManager.showPageByName('supervisedUserImport');

Powered by Google App Engine
This is Rietveld 408576698