Index: tools/codemap.js |
diff --git a/tools/codemap.js b/tools/codemap.js |
index 129179e84564b22d634ebb7dfebc947665dc1d8a..fa6c36b50b9a1a1c8e52adab2da993909ef9b795 100644 |
--- a/tools/codemap.js |
+++ b/tools/codemap.js |
@@ -258,11 +258,13 @@ CodeMap.prototype.getAllLibrariesEntries = function() { |
* |
* @param {number} size Code entry size in bytes. |
* @param {string} opt_name Code entry name. |
+ * @param {string} opt_type Code entry type, e.g. SHARED_LIB, CPP. |
* @constructor |
*/ |
-CodeMap.CodeEntry = function(size, opt_name) { |
+CodeMap.CodeEntry = function(size, opt_name, opt_type) { |
this.size = size; |
this.name = opt_name || ''; |
+ this.type = opt_type || ''; |
this.nameUpdated_ = false; |
}; |