| Index: third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js b/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js
|
| index 707a499d1685ce314881f978c1916dca1a0f58de..57fe30a934b249384b01aab8259953bab35cf143 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js
|
| @@ -63,7 +63,7 @@ WebInspector.SourceFrame = function(url, lazyContent)
|
| * @type {?WebInspector.SearchableView}
|
| */
|
| this._searchableView = null;
|
| -}
|
| +};
|
|
|
| WebInspector.SourceFrame.prototype = {
|
| /**
|
| @@ -345,7 +345,7 @@ WebInspector.SourceFrame.prototype = {
|
| this._resetSearch();
|
| this._searchConfig = searchConfig;
|
| if (this.loaded)
|
| - this._doFindSearchMatches(searchConfig, shouldJump, !!jumpBackwards)
|
| + this._doFindSearchMatches(searchConfig, shouldJump, !!jumpBackwards);
|
| else
|
| this._delayedFindSearchMatches = this._doFindSearchMatches.bind(this, searchConfig, shouldJump, !!jumpBackwards);
|
|
|
| @@ -603,4 +603,4 @@ WebInspector.SourceFrame.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.SimpleView.prototype
|
| -}
|
| +};
|
|
|