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

Unified Diff: chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js

Issue 575333002: Compile print_preview, part 2: reduce down to 260 errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@I_print_preview
Patch Set: revert movement of enums: now handle in compiler pass Created 6 years, 3 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/data/ticket_items/ticket_item.js
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
index 76fa8c6a021769ceeb3e4f3a3371f0463a21056d..bb974601a1d95058aa71e225f33324efc616e6a2 100644
--- a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
+++ b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
@@ -22,6 +22,7 @@ cr.define('print_preview.ticket_items', function() {
* changes in the document. Since this is a common dependency of ticket
* items, it's handled in the base class.
* @constructor
+ * @extends {cr.EventTarget}
*/
function TicketItem(appState, field, destinationStore, documentInfo) {
cr.EventTarget.call(this);
@@ -35,7 +36,7 @@ cr.define('print_preview.ticket_items', function() {
/**
* Field of the app state to update when ticket item is updated.
- * @type {print_preview.AppState.Field}
+ * @type {?print_preview.AppState.Field}
* @private
*/
this.field_ = field || null;
@@ -148,7 +149,7 @@ cr.define('print_preview.ticket_items', function() {
},
/**
- * @return {!Object} Default value of the ticket item if no value was set by
+ * @return {?} Default value of the ticket item if no value was set by
* the user.
* @protected
*/
@@ -157,7 +158,7 @@ cr.define('print_preview.ticket_items', function() {
},
/**
- * @return {!Object} Default value of the ticket item if the capability is
+ * @return {?} Default value of the ticket item if the capability is
* not available.
* @protected
*/

Powered by Google App Engine
This is Rietveld 408576698