| 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_;
|
| },
|
|
|