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

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

Issue 2812063: Add starter code for 'Clear Browser Data' and 'Font Settings' overlay dialogs... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * ClearBrowserData class
7 * Encapsulated handling of the 'Clear Browser Data' overlay page.
8 * @class
9 */
10 function ClearBrowserDataOverlay() {
11 OptionsPage.call(this, 'clearBrowserDataOverlay',
12 templateData.clearBrowserDataTitle,
13 'clearBrowserDataOverlay');
14 }
15
16 cr.addSingletonGetter(ClearBrowserDataOverlay);
17
18 ClearBrowserDataOverlay.prototype = {
19 // Inherit ClearBrowserDataOverlay from OptionsPage.
20 __proto__: OptionsPage.prototype,
21
22 /**
23 * Initialize the page.
24 */
25 initializePage: function() {
26 // Call base class implementation to starts preference initialization.
27 OptionsPage.prototype.initializePage.call(this);
28
29 // TODO(csilv): add any initialization here or delete method and/or class.
30 }
31 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698