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

Side by Side Diff: chrome/browser/resources/about_page/about_page.js

Issue 9124028: separate about page into its own page (included in chrome://chrome) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dbeam nits Created 8 years, 11 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
csilv 2012/01/10 00:22:11 I guess this page can be reverted (unless rietveld
Dan Beam 2012/01/10 00:33:39 File was moved (check out "Download patch" link).
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 const OptionsPage = options.OptionsPage; 6 const OptionsPage = options.OptionsPage;
7 7
8 /** 8 /**
9 * The number of milliseconds used for showing a message. 9 * The number of milliseconds used for showing a message.
10 * @type {number} 10 * @type {number}
11 */ 11 */
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 AboutPage.changeToRestartButton = function() { 211 AboutPage.changeToRestartButton = function() {
212 AboutPage.getInstance().changeToRestartButton_(); 212 AboutPage.getInstance().changeToRestartButton_();
213 }; 213 };
214 214
215 // Export 215 // Export
216 return { 216 return {
217 AboutPage: AboutPage 217 AboutPage: AboutPage
218 }; 218 };
219 219
220 }); 220 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698