| Index: third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| index 3b03a39af3a76e3b360f30c544051d29c4086e81..8aa4cc24b78023195d7216596178462f10e88565 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| @@ -48,7 +48,7 @@ WebInspector.TextPrompt = function(completions, stopCharacters)
|
| this._previousText = "";
|
| this._currentHintText = "";
|
| this._completionRequestId = 0;
|
| -}
|
| +};
|
|
|
| WebInspector.TextPrompt.DefaultAutocompletionTimeout = 250;
|
|
|
| @@ -785,7 +785,7 @@ WebInspector.TextPrompt.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
| -}
|
| +};
|
|
|
|
|
| /**
|
| @@ -800,7 +800,7 @@ WebInspector.TextPromptWithHistory = function(completions, stopCharacters)
|
|
|
| this._history = new WebInspector.HistoryManager();
|
| this._addCompletionsFromHistory = true;
|
| -}
|
| +};
|
|
|
| WebInspector.TextPromptWithHistory.prototype = {
|
| /**
|
| @@ -904,7 +904,7 @@ WebInspector.TextPromptWithHistory.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.TextPrompt.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -921,7 +921,7 @@ WebInspector.HistoryManager = function()
|
| * @type {number}
|
| */
|
| this._historyOffset = 1;
|
| -}
|
| +};
|
|
|
| WebInspector.HistoryManager.prototype = {
|
| /**
|
|
|