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

Unified Diff: chrome/browser/resources/print_preview/data/capabilities_holder.js

Issue 588713002: Compile print_preview, part 3: reduce down to 185 errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@I_print_preview_2
Patch Set: fix assert 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/capabilities_holder.js
diff --git a/chrome/browser/resources/print_preview/data/capabilities_holder.js b/chrome/browser/resources/print_preview/data/capabilities_holder.js
index e872f4f0ef32bb090fd8e002d4d03ae9c5d29643..d22bfe974bc0a990b84e4d8deebed3467f127e40 100644
--- a/chrome/browser/resources/print_preview/data/capabilities_holder.js
+++ b/chrome/browser/resources/print_preview/data/capabilities_holder.js
@@ -12,14 +12,14 @@ cr.define('print_preview', function() {
function CapabilitiesHolder() {
/**
* Reference to the capabilities object.
- * @type {print_preview.Cdd}
+ * @type {?print_preview.Cdd}
* @private
*/
this.capabilities_ = null;
};
CapabilitiesHolder.prototype = {
- /** @return {print_preview.Cdd} The instance held by the holder. */
+ /** @return {?print_preview.Cdd} The instance held by the holder. */
get: function() {
return this.capabilities_;
},
« no previous file with comments | « chrome/browser/resources/print_preview/data/app_state.js ('k') | chrome/browser/resources/print_preview/data/destination.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698