| Index: third_party/WebKit/Source/devtools/front_end/ui/SoftContextMenu.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SoftContextMenu.js b/third_party/WebKit/Source/devtools/front_end/ui/SoftContextMenu.js
|
| index 99c432ca8991e90d7144b2f0620d2b4622dfb71f..ae049454f9fb10959546388a43c41567f3af8918 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/SoftContextMenu.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/SoftContextMenu.js
|
| @@ -34,7 +34,7 @@ WebInspector.SoftContextMenu = function(items, itemSelectedCallback, parentMenu)
|
| this._items = items;
|
| this._itemSelectedCallback = itemSelectedCallback;
|
| this._parentMenu = parentMenu;
|
| -}
|
| +};
|
|
|
| WebInspector.SoftContextMenu.prototype = {
|
| /**
|
| @@ -397,4 +397,4 @@ WebInspector.SoftContextMenu.prototype = {
|
| if (this._parentMenu)
|
| delete this._parentMenu._subMenu;
|
| }
|
| -}
|
| +};
|
|
|