Index: Source/devtools/front_end/CanvasProfileView.js |
diff --git a/Source/devtools/front_end/CanvasProfileView.js b/Source/devtools/front_end/CanvasProfileView.js |
index fbee2ab09ffb2a7f9bfdba2e5d7f035306434ecf..88d4fe131a24de1a9b95bd127b3fcebecf1f311b 100644 |
--- a/Source/devtools/front_end/CanvasProfileView.js |
+++ b/Source/devtools/front_end/CanvasProfileView.js |
@@ -50,7 +50,7 @@ WebInspector.CanvasProfileView = function(profile) |
this._imageSplitView.show(this._replayInfoSplitView.mainElement()); |
var replayImageContainerView = new WebInspector.VBox(); |
- replayImageContainerView.setMinimumSize(50, 28); |
+ replayImageContainerView.setConstraints(50, 28); |
replayImageContainerView.show(this._imageSplitView.mainElement()); |
var replayImageContainer = replayImageContainerView.element; |
@@ -60,7 +60,7 @@ WebInspector.CanvasProfileView = function(profile) |
this._spinnerIcon = replayImageContainer.createChild("div", "spinner-icon small hidden"); |
var replayLogContainerView = new WebInspector.VBox(); |
- replayLogContainerView.setMinimumSize(22, 22); |
+ replayLogContainerView.setConstraints(22, 22); |
replayLogContainerView.show(this._imageSplitView.sidebarElement()); |
var replayLogContainer = replayLogContainerView.element; |