| Index: third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js b/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js
|
| index 81e1b5df42d8612c4c592d663e57a5a6618ad7bd..b6b96b58f96dfd4d5dbbf3fc52ce388a79cb8c1a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js
|
| @@ -13,7 +13,7 @@ WebInspector.CharacterIdMap = function()
|
| /** @type {!Map<string, T>} */
|
| this._characterToElement = new Map();
|
| this._charCode = 33;
|
| -}
|
| +};
|
|
|
| WebInspector.CharacterIdMap.prototype = {
|
| /**
|
| @@ -41,4 +41,4 @@ WebInspector.CharacterIdMap.prototype = {
|
| {
|
| return this._characterToElement.get(character) || null;
|
| }
|
| -}
|
| +};
|
|
|