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

Unified Diff: chrome/browser/resources/print_preview/previewarea/margin_control.js

Issue 2865633004: Fix all remaining print preview closure compiler errors (Closed)
Patch Set: Fix onkeydown function Created 3 years, 7 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/print_preview/previewarea/margin_control.js
diff --git a/chrome/browser/resources/print_preview/previewarea/margin_control.js b/chrome/browser/resources/print_preview/previewarea/margin_control.js
index 07d2dcc6ad8f75d7a99a814c7cfd5e231d8906a1..f324dc99c53a8a46128ece5d9fadf8cc311bc8b3 100644
--- a/chrome/browser/resources/print_preview/previewarea/margin_control.js
+++ b/chrome/browser/resources/print_preview/previewarea/margin_control.js
@@ -99,7 +99,7 @@ cr.define('print_preview', function() {
* @private
*/
this.isInError_ = false;
- };
+ }
/**
* Event types dispatched by the margin control.
@@ -327,6 +327,7 @@ cr.define('print_preview', function() {
this.getElement(),
'transitionend',
this.onTransitionEnd_.bind(this));
+ assert(this.textbox_);
this.tracker.add(
this.textbox_, 'input', this.onTextboxInput_.bind(this));
this.tracker.add(

Powered by Google App Engine
This is Rietveld 408576698