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

Unified Diff: chrome/browser/resources/options/chromeos/note_overlay.js

Issue 2273273003: Update strings for ash palette and rename options/settings files. (Closed)
Patch Set: A few more string changes Created 4 years, 4 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/chromeos/note_overlay.js
diff --git a/chrome/browser/resources/options/chromeos/note_overlay.js b/chrome/browser/resources/options/chromeos/note_overlay.js
deleted file mode 100644
index c1d826511ba6ed780cd0063fbfdd86366a037397..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/options/chromeos/note_overlay.js
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-cr.define('options', function() {
- /**
- * Encapsulated handling of the note overlay.
- * @constructor
- * @extends {options.SettingsDialog}
- */
- function NoteOverlay() {
- options.SettingsDialog.call(this, 'note-overlay',
- loadTimeData.getString('noteOverlayTabTitle'),
- 'note-overlay',
- assertInstanceof($('note-confirm'), HTMLButtonElement),
- assertInstanceof($('note-cancel'), HTMLButtonElement));
- }
-
- cr.addSingletonGetter(NoteOverlay);
-
- NoteOverlay.prototype = {
- __proto__: options.SettingsDialog.prototype,
-
- /** @override */
- initializePage: function() {
- options.SettingsDialog.prototype.initializePage.call(this);
- },
- };
-
- // Export
- return {
- NoteOverlay: NoteOverlay
- };
-});

Powered by Google App Engine
This is Rietveld 408576698