Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Unified Diff: third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
-}
+};

Powered by Google App Engine
This is Rietveld 408576698