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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/StaticContentProvider.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/common/StaticContentProvider.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/StaticContentProvider.js b/third_party/WebKit/Source/devtools/front_end/common/StaticContentProvider.js
index 86322e1bb0747af4966559c4f05b4e40d47f3952..ffaa5bb644d70a1c9db30afa00009cefeb1778ac 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/StaticContentProvider.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/StaticContentProvider.js
@@ -14,7 +14,7 @@ WebInspector.StaticContentProvider = function(contentURL, contentType, lazyConte
this._contentURL = contentURL;
this._contentType = contentType;
this._lazyContent = lazyContent;
-}
+};
/**
* @param {string} contentURL
@@ -26,7 +26,7 @@ WebInspector.StaticContentProvider.fromString = function(contentURL, contentType
{
var lazyContent = () => Promise.resolve(content);
return new WebInspector.StaticContentProvider(contentURL, contentType, lazyContent);
-}
+};
WebInspector.StaticContentProvider.prototype = {
/**
@@ -75,4 +75,4 @@ WebInspector.StaticContentProvider.prototype = {
this._lazyContent().then(performSearch);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698