Chromium Code Reviews| Index: tools/codemap.js |
| diff --git a/tools/codemap.js b/tools/codemap.js |
| index 129179e84564b22d634ebb7dfebc947665dc1d8a..e336a8ee40f29366479b98ed05072c86c816c65f 100644 |
| --- a/tools/codemap.js |
| +++ b/tools/codemap.js |
| @@ -260,9 +260,10 @@ CodeMap.prototype.getAllLibrariesEntries = function() { |
| * @param {string} opt_name Code entry name. |
|
yurys
2014/10/15 05:35:47
opt_type parameter annotation is missing
Jakob Kummerow
2014/10/15 15:08:57
Done.
|
| * @constructor |
| */ |
| -CodeMap.CodeEntry = function(size, opt_name) { |
| +CodeMap.CodeEntry = function(size, opt_name, opt_type) { |
|
loislo
2014/10/14 15:49:15
please annotate
Jakob Kummerow
2014/10/15 15:08:57
Done.
|
| this.size = size; |
| this.name = opt_name || ''; |
| + this.type = opt_type || ''; |
| this.nameUpdated_ = false; |
| }; |