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

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

Issue 10450022: Print Preview Print Destination Search Widget (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Set --bary flag Created 8 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/data/measurement_system.js
diff --git a/chrome/browser/resources/print_preview/data/measurement_system.js b/chrome/browser/resources/print_preview/data/measurement_system.js
index ccee0d9ae803f9391d99922f5bf851b45e80de19..85b7c580f620af4193b295747ab48fac5a8f454d 100644
--- a/chrome/browser/resources/print_preview/data/measurement_system.js
+++ b/chrome/browser/resources/print_preview/data/measurement_system.js
@@ -10,8 +10,8 @@ cr.define('print_preview', function() {
* measurements into the system's local units (e.g. millimeters, inches).
* @param {string} thousandsDelimeter Delimeter between thousands digits.
* @param {string} decimalDelimeter Delimeter between integers and decimals.
- * @param {print_preview.MeasurementSystem.UnitType} unitType Measurement unit
- * type of the system.
+ * @param {!print_preview.MeasurementSystem.UnitType} unitType Measurement
+ * unit type of the system.
* @constructor
*/
function MeasurementSystem(thousandsDelimeter, decimalDelimeter, unitType) {
@@ -48,7 +48,7 @@ cr.define('print_preview', function() {
/**
* Maximum resolution of local unit values.
- * @type {Object.<print_preview.MeasurementSystem.UnitType, number>}
+ * @type {!Object.<!print_preview.MeasurementSystem.UnitType, number>}
* @private
*/
MeasurementSystem.Precision_ = {};
@@ -57,7 +57,7 @@ cr.define('print_preview', function() {
/**
* Maximum number of decimal places to keep for local unit.
- * @type {Object.<print_preview.MeasurementSystem.UnitType, number>}
+ * @type {!Object.<!print_preview.MeasurementSystem.UnitType, number>}
* @private
*/
MeasurementSystem.DecimalPlaces_ = {};

Powered by Google App Engine
This is Rietveld 408576698