Index: ui/webui/resources/js/load_time_data.js |
diff --git a/ui/webui/resources/js/load_time_data.js b/ui/webui/resources/js/load_time_data.js |
index 1ed68a64d5e1f6fca04cc2f0164e5968352de309..38b4721e13c9a4ac3d4c5da425ec84e38396b5e0 100644 |
--- a/ui/webui/resources/js/load_time_data.js |
+++ b/ui/webui/resources/js/load_time_data.js |
@@ -39,13 +39,17 @@ function LoadTimeData(){} |
* Returns a JsEvalContext for |data_|. |
* @returns {JsEvalContext} |
*/ |
- createJsEvalContext: function() { return new JsEvalContext(this.data_); }, |
+ createJsEvalContext: function() { |
+ return new JsEvalContext(this.data_); |
+ }, |
/** |
* @param {string} id An ID of a value that might exist. |
* @return {boolean} True if |id| is a key in the dictionary. |
*/ |
- valueExists: function(id) { return id in this.data_; }, |
+ valueExists: function(id) { |
+ return id in this.data_; |
+ }, |
/** |
* Fetches a value, expecting that it exists. |
@@ -84,8 +88,9 @@ function LoadTimeData(){} |
return ''; |
var varArgs = arguments; |
- return value.replace( |
- /\$[$1-9]/g, function(m) { return m == '$$' ? '$' : varArgs[m[1]]; }); |
+ return value.replace(/\$[$1-9]/g, function(m) { |
+ return m == '$$' ? '$' : varArgs[m[1]]; |
+ }); |
}, |
/** |