| Index: third_party/WebKit/Source/devtools/front_end/ui/RootView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/RootView.js b/third_party/WebKit/Source/devtools/front_end/ui/RootView.js
|
| index 15f2b86298944a2fc3872ce43cb43e6505f8e4fd..65148585526c1b92149b64fe2dc1ef1b38ad726a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/RootView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/RootView.js
|
| @@ -4,7 +4,7 @@
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.RootView = class extends WebInspector.VBox {
|
| +UI.RootView = class extends UI.VBox {
|
| constructor() {
|
| super();
|
| this.markAsRoot();
|
| @@ -29,7 +29,7 @@ WebInspector.RootView = class extends WebInspector.VBox {
|
| doResize() {
|
| if (this._window) {
|
| var size = this.constraints().minimum;
|
| - var zoom = WebInspector.zoomManager.zoomFactor();
|
| + var zoom = UI.zoomManager.zoomFactor();
|
| var right = Math.min(0, this._window.innerWidth - size.width / zoom);
|
| this.element.style.marginRight = right + 'px';
|
| var bottom = Math.min(0, this._window.innerHeight - size.height / zoom);
|
|
|