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); |
} |
-} |
+}; |