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