Commit 7626ccac authored by benwells's avatar benwells Committed by Commit bot

Mark chrome.app.window resizeTo and moveTo as deprecated.

These are flaky on various platforms for app windows; outerBounds is
preferred.

BUG=453707

Review URL: https://codereview.chromium.org/976563002

Cr-Commit-Position: refs/heads/master@{#319045}
parent 3ccbc1aa
...@@ -331,10 +331,10 @@ namespace app.window { ...@@ -331,10 +331,10 @@ namespace app.window {
static void restore(); static void restore();
// Move the window to the position (|left|, |top|). // Move the window to the position (|left|, |top|).
static void moveTo(long left, long top); [deprecated="Use outerBounds."] static void moveTo(long left, long top);
// Resize the window to |width|x|height| pixels in size. // Resize the window to |width|x|height| pixels in size.
static void resizeTo(long width, long height); [deprecated="Use outerBounds."] static void resizeTo(long width, long height);
// Draw attention to the window. // Draw attention to the window.
static void drawAttention(); static void drawAttention();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment