Index: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js |
index 5f5f7fe13cd9ceb3e76b068971ed9ac17d3b6fa4..13f6899a262f0f22cb3b1665e83c6b26b686902f 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js |
+++ b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js |
@@ -51,7 +51,7 @@ WebInspector.ExtensionView = function(server, id, src, className) |
this.setDefaultFocusedElement(this._iframe); |
this.element.appendChild(this._iframe); |
-} |
+}; |
WebInspector.ExtensionView.prototype = { |
wasShown: function() |
@@ -75,7 +75,7 @@ WebInspector.ExtensionView.prototype = { |
}, |
__proto__: WebInspector.Widget.prototype |
-} |
+}; |
/** |
* @constructor |
@@ -89,7 +89,7 @@ WebInspector.ExtensionNotifierView = function(server, id) |
this._server = server; |
this._id = id; |
-} |
+}; |
WebInspector.ExtensionNotifierView.prototype = { |
wasShown: function() |
@@ -103,4 +103,4 @@ WebInspector.ExtensionNotifierView.prototype = { |
}, |
__proto__: WebInspector.VBox.prototype |
-} |
+}; |