| Index: third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js b/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js
|
| index ed4e6cc1d1a0bb668115deb1d3405ad18bf63a97..0ef59c46781da1653dd0e61210ce9863cde1bcc6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/InplaceEditor.js
|
| @@ -7,7 +7,7 @@
|
| */
|
| WebInspector.InplaceEditor = function()
|
| {
|
| -}
|
| +};
|
|
|
| /**
|
| * @typedef {{cancel: function(), commit: function(), setWidth: function(number)}}
|
| @@ -24,7 +24,7 @@ WebInspector.InplaceEditor.startEditing = function(element, config)
|
| if (!WebInspector.InplaceEditor._defaultInstance)
|
| WebInspector.InplaceEditor._defaultInstance = new WebInspector.InplaceEditor();
|
| return WebInspector.InplaceEditor._defaultInstance.startEditing(element, config);
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {!Element} element
|
| @@ -46,7 +46,7 @@ WebInspector.InplaceEditor.startMultilineEditing = function(element, config)
|
| return Promise.reject(new Error("Editing is already in progress"));
|
| return controller;
|
| }
|
| -}
|
| +};
|
|
|
| WebInspector.InplaceEditor.prototype = {
|
| /**
|
| @@ -236,7 +236,7 @@ WebInspector.InplaceEditor.prototype = {
|
| this.augmentEditingHandle(editingContext, handle);
|
| return handle;
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -267,7 +267,7 @@ WebInspector.InplaceEditor.Config = function(commitHandler, cancelHandler, conte
|
| * @type {function(!Event):string|undefined}
|
| */
|
| this.postKeydownFinishHandler;
|
| -}
|
| +};
|
|
|
| WebInspector.InplaceEditor.Config.prototype = {
|
| setPasteHandler: function(pasteHandler)
|
| @@ -299,4 +299,4 @@ WebInspector.InplaceEditor.Config.prototype = {
|
| {
|
| this.postKeydownFinishHandler = postKeydownFinishHandler;
|
| }
|
| -}
|
| +};
|
|
|