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

Unified Diff: third_party/WebKit/Source/devtools/front_end/source_frame/ResourceSourceFrame.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/ResourceSourceFrame.js
diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/ResourceSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/source_frame/ResourceSourceFrame.js
index 3f43015fa907a1936721a5474d9b8318d7248d8a..efceee1102b3523c6f3fbe4aab0834f7d5e41dc0 100644
--- a/third_party/WebKit/Source/devtools/front_end/source_frame/ResourceSourceFrame.js
+++ b/third_party/WebKit/Source/devtools/front_end/source_frame/ResourceSourceFrame.js
@@ -36,7 +36,7 @@ WebInspector.ResourceSourceFrame = function(resource)
{
this._resource = resource;
WebInspector.SourceFrame.call(this, resource.contentURL(), resource.requestContent.bind(resource));
-}
+};
/**
* @param {!WebInspector.ContentProvider} resource
@@ -52,7 +52,7 @@ WebInspector.ResourceSourceFrame.createSearchableView = function(resource, highl
sourceFrame.show(searchableView.element);
sourceFrame.setSearchableView(searchableView);
return searchableView;
-}
+};
WebInspector.ResourceSourceFrame.prototype = {
get resource()
@@ -74,4 +74,4 @@ WebInspector.ResourceSourceFrame.prototype = {
},
__proto__: WebInspector.SourceFrame.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698