Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(910)

Unified Diff: Source/devtools/front_end/InspectorFrontendHostStub.js

Issue 71633003: DevTools: added "overlayContents" mode, where DevTools content is placed around and underneath inse… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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]);

Powered by Google App Engine
This is Rietveld 408576698