Index: chrome/browser/resources/settings/device_page/stylus.js |
diff --git a/chrome/browser/resources/settings/device_page/stylus.js b/chrome/browser/resources/settings/device_page/stylus.js |
index 8e5773d850e7269ee643a3584f22c5fa708b60c1..da4ca52adc45172aab8b6b00b97806a31e0a22b5 100644 |
--- a/chrome/browser/resources/settings/device_page/stylus.js |
+++ b/chrome/browser/resources/settings/device_page/stylus.js |
@@ -27,27 +27,28 @@ Polymer({ |
*/ |
appChoices_: { |
type: Array, |
- value: function() { return []; } |
+ value: function() { |
+ return []; |
+ } |
}, |
/** |
* True if the ARC container has not finished starting yet. |
* @private |
*/ |
- waitingForAndroid_: { |
- type: Boolean, |
- value: false |
- }, |
+ waitingForAndroid_: {type: Boolean, value: false}, |
}, |
/** @private {?settings.DevicePageBrowserProxy} */ |
browserProxy_: null, |
+ /** @override */ |
created: function() { |
this.browserProxy_ = settings.DevicePageBrowserProxyImpl.getInstance(); |
}, |
+ /** @override */ |
ready: function() { |
this.browserProxy_.setNoteTakingAppsUpdatedCallback( |
this.onNoteAppsUpdated_.bind(this)); |