| Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| index e94554d0b438d04a5c1e70c63a752a76589425c7..1e39accaa0ba5ca58bb48d37c1b54b4218760e83 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| @@ -50,7 +50,7 @@ WebInspector.FilteredListWidget = function(delegate)
|
|
|
| /** @typedef {!Array.<!Element>} */
|
| this._elements = [];
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {string} query
|
| @@ -69,7 +69,7 @@ WebInspector.FilteredListWidget.filterRegex = function(query)
|
| regexString += c;
|
| }
|
| return new RegExp(regexString, "i");
|
| -}
|
| +};
|
|
|
| WebInspector.FilteredListWidget.prototype = {
|
| showAsDialog: function()
|
| @@ -401,7 +401,7 @@ WebInspector.FilteredListWidget.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -410,7 +410,7 @@ WebInspector.FilteredListWidget.prototype = {
|
| WebInspector.FilteredListWidget.Delegate = function(promptHistory)
|
| {
|
| this._promptHistory = promptHistory;
|
| -}
|
| +};
|
|
|
| WebInspector.FilteredListWidget.Delegate.prototype = {
|
| /**
|
| @@ -583,4 +583,4 @@ WebInspector.FilteredListWidget.Delegate.prototype = {
|
| dispose: function()
|
| {
|
| }
|
| -}
|
| +};
|
|
|