| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| index 85fb0a2271222061e173a2da2e8e396c857df551..b050993f17857229a0b283acb259f3f971b01fd1 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| @@ -34,7 +34,7 @@ WebInspector.SourcesSearchScope = function()
|
| {
|
| // FIXME: Add title once it is used by search controller.
|
| this._searchId = 0;
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {!WebInspector.UISourceCode} uiSourceCode1
|
| @@ -54,7 +54,7 @@ WebInspector.SourcesSearchScope._filesComparator = function(uiSourceCode1, uiSou
|
| if (!url1 && url2)
|
| return 1;
|
| return String.naturalOrderComparator(uiSourceCode1.fullDisplayName(), uiSourceCode2.fullDisplayName());
|
| -}
|
| +};
|
|
|
|
|
| WebInspector.SourcesSearchScope.prototype = {
|
| @@ -311,4 +311,4 @@ WebInspector.SourcesSearchScope.prototype = {
|
| {
|
| return new WebInspector.FileBasedSearchResultsPane(searchConfig);
|
| }
|
| -}
|
| +};
|
|
|