Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 * @fileoverview | |
| 7 * 'settings-power' is the settings subpage with power-specific settings. | |
| 8 */ | |
| 9 | |
|
michaelpg
2017/01/13 17:15:35
nit: remove blank line
Daniel Erat
2017/01/13 17:34:08
done (locally)
| |
| 10 Polymer({ | |
| 11 is: 'settings-power', | |
| 12 | |
| 13 properties: { | |
| 14 /** Preferences state. */ | |
| 15 prefs: { | |
|
michaelpg
2017/01/13 17:15:35
will we need this?
Daniel Erat
2017/01/13 17:34:08
yes, i believe that we will for http://crbug.com/6
| |
| 16 type: Object, | |
| 17 notify: true, | |
| 18 } | |
| 19 } | |
| 20 }); | |
| OLD | NEW |