| Index: chrome/browser/resources/settings/device_page/note.js
|
| diff --git a/chrome/browser/resources/settings/printing_page/cloud_printers.js b/chrome/browser/resources/settings/device_page/note.js
|
| similarity index 62%
|
| copy from chrome/browser/resources/settings/printing_page/cloud_printers.js
|
| copy to chrome/browser/resources/settings/device_page/note.js
|
| index 1f96323b2d3287cf9e0583cd3f59192bf572ded4..9695bf6451a225fe090dd3e0320c5701bc044cb9 100644
|
| --- a/chrome/browser/resources/settings/printing_page/cloud_printers.js
|
| +++ b/chrome/browser/resources/settings/device_page/note.js
|
| @@ -2,18 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +/**
|
| + * @fileoverview
|
| + * 'settings-note' is the settings subpage with note-specific settings.
|
| + */
|
| +
|
| Polymer({
|
| - is: 'settings-cloud-printers',
|
| + is: 'settings-note',
|
|
|
| properties: {
|
| + /** Preferences state. */
|
| prefs: {
|
| type: Object,
|
| notify: true,
|
| },
|
| - },
|
| -
|
| - /** @private */
|
| - onManageTap_: function() {
|
| - window.open(loadTimeData.getString('devicesUrl'));
|
| - },
|
| + }
|
| });
|
|
|