| Index: third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js b/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
|
| index 05a6c5e84bf956dd18ef9797f770064f2263a0e7..7ab81923d7c26c9320e6f196e1d27bf90b2cc075 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js
|
| @@ -392,9 +392,10 @@
|
| * Requests inspected page to be placed atop of the inspector frontend with specified bounds.
|
| * @override
|
| * @param {{x: number, y: number, width: number, height: number}} bounds
|
| + * @param {boolean=} force
|
| */
|
| - setInspectedPageBounds(bounds) {
|
| - DevToolsAPI.sendMessageToEmbedder('setInspectedPageBounds', [bounds], null);
|
| + setInspectedPageBounds(bounds, force) {
|
| + DevToolsAPI.sendMessageToEmbedder('setInspectedPageBounds', [bounds, force || false], null);
|
| }
|
|
|
| /**
|
|
|