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

Unified Diff: chrome/browser/resources/settings/device_page/stylus.js

Issue 2847963003: [MD settings] specify @override on created, ready, and attached (Closed)
Patch Set: Created 3 years, 8 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/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));

Powered by Google App Engine
This is Rietveld 408576698