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

Side by Side Diff: chrome/browser/resources/options/browser_options.js

Issue 17320005: Update strings to match the final spec. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: For review Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 cr.define('options', function() { 5 cr.define('options', function() {
6 var OptionsPage = options.OptionsPage; 6 var OptionsPage = options.OptionsPage;
7 var ArrayDataModel = cr.ui.ArrayDataModel; 7 var ArrayDataModel = cr.ui.ArrayDataModel;
8 var RepeatingButton = cr.ui.RepeatingButton; 8 var RepeatingButton = cr.ui.RepeatingButton;
9 9
10 // 10 //
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 /** 1065 /**
1066 * Reports a local error (e.g., disk full) to the "create" overlay during 1066 * Reports a local error (e.g., disk full) to the "create" overlay during
1067 * profile creation. 1067 * profile creation.
1068 * @private 1068 * @private
1069 */ 1069 */
1070 showCreateProfileLocalError_: function() { 1070 showCreateProfileLocalError_: function() {
1071 CreateProfileOverlay.onLocalError(); 1071 CreateProfileOverlay.onLocalError();
1072 }, 1072 },
1073 1073
1074 /** 1074 /**
1075 * Reports a remote error (e.g., a network error during limited-user 1075 * Reports a remote error (e.g., a network error during managed-user
1076 * registration) to the "create" overlay during profile creation. 1076 * registration) to the "create" overlay during profile creation.
1077 * @private 1077 * @private
1078 */ 1078 */
1079 showCreateProfileRemoteError_: function() { 1079 showCreateProfileRemoteError_: function() {
1080 CreateProfileOverlay.onRemoteError(); 1080 CreateProfileOverlay.onRemoteError();
1081 }, 1081 },
1082 1082
1083 /** 1083 /**
1084 * Reports successful profile creation to the "create" overlay. 1084 * Reports successful profile creation to the "create" overlay.
1085 * @param {Object} profileInfo An object of the form: 1085 * @param {Object} profileInfo An object of the form:
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
1502 BrowserOptions.getLoggedInUsername = function() { 1502 BrowserOptions.getLoggedInUsername = function() {
1503 return BrowserOptions.getInstance().username_; 1503 return BrowserOptions.getInstance().username_;
1504 }; 1504 };
1505 } 1505 }
1506 1506
1507 // Export 1507 // Export
1508 return { 1508 return {
1509 BrowserOptions: BrowserOptions 1509 BrowserOptions: BrowserOptions
1510 }; 1510 };
1511 }); 1511 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698