| Index: third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js b/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js
|
| index 4970cd464105fae73f098539e5a6393233e0e285..5d113037138aa4fd25cf9bd97bd236d98e8e6e53 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js
|
| @@ -18,12 +18,12 @@ WebInspector.DropTarget = function(element, transferTypes, messageText, handleDr
|
| this._messageText = messageText;
|
| this._handleDrop = handleDrop;
|
| this._enabled = true;
|
| -}
|
| +};
|
|
|
| WebInspector.DropTarget.Types = {
|
| Files: "Files",
|
| URIList: "text/uri-list"
|
| -}
|
| +};
|
|
|
| WebInspector.DropTarget.prototype = {
|
| /**
|
| @@ -99,4 +99,4 @@ WebInspector.DropTarget.prototype = {
|
| this._dragMaskElement.remove();
|
| delete this._dragMaskElement;
|
| }
|
| -}
|
| +};
|
|
|