Index: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
index f70826661b26fe072f23cbfb383f90e56c45cd93..6cc1b15143839fa97d4b016e4c48311be62eb803 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
@@ -42,7 +42,7 @@ WebInspector.CallStackSidebarPane = function() |
this.callFrames = []; |
this._locationPool = new WebInspector.LiveLocationPool(); |
this._update(); |
-} |
+}; |
WebInspector.CallStackSidebarPane.prototype = { |
/** |
@@ -469,7 +469,7 @@ WebInspector.CallStackSidebarPane.prototype = { |
}, |
__proto__: WebInspector.SimpleView.prototype |
-} |
+}; |
/** |
* @constructor |
@@ -488,7 +488,7 @@ WebInspector.CallStackSidebarPane.CallFrame = function(functionName, location, l |
this._debuggerCallFrame = debuggerCallFrame; |
this._asyncCallFrame = asyncCallFrame; |
WebInspector.debuggerWorkspaceBinding.createCallFrameLiveLocation(location, this._update.bind(this), locationPool); |
-} |
+}; |
WebInspector.CallStackSidebarPane.CallFrame.prototype = { |
/** |
@@ -505,4 +505,4 @@ WebInspector.CallStackSidebarPane.CallFrame.prototype = { |
}, |
__proto__: WebInspector.UIList.Item.prototype |
-} |
+}; |