| Index: Source/devtools/front_end/InspectorFrontendHostStub.js
|
| diff --git a/Source/devtools/front_end/InspectorFrontendHostStub.js b/Source/devtools/front_end/InspectorFrontendHostStub.js
|
| index 13edfa7b5c41fa38ca6c6a66f667f3dd58942b95..81ea32787c4a11fec8efe023f30dbfbf7681549c 100644
|
| --- a/Source/devtools/front_end/InspectorFrontendHostStub.js
|
| +++ b/Source/devtools/front_end/InspectorFrontendHostStub.js
|
| @@ -82,7 +82,7 @@ WebInspector.InspectorFrontendHostStub.prototype = {
|
| InspectorFrontendAPI.setDockSide(side);
|
| },
|
|
|
| - setWindowBounds: function(x, y, width, height, callback)
|
| + setContentsOffsets: function(left, top, right, bottom, callback)
|
| {
|
| callback();
|
| },
|
| @@ -240,7 +240,7 @@ InspectorFrontendHost = new WebInspector.InspectorFrontendHostStub();
|
|
|
| var methodList = [ "addFileSystem", "append", "bringToFront", "indexPath", "moveWindowBy", "openInNewTab",
|
| "removeFileSystem", "requestFileSystems", "requestSetDockSide", "save", "searchInPath",
|
| - "setWindowBounds", "stopIndexing" ];
|
| + "setContentsOffsets", "stopIndexing" ];
|
|
|
| for (var i = 0; i < methodList.length; ++i)
|
| InspectorFrontendHost[methodList[i]] = dispatch.bind(null, methodList[i]);
|
|
|