| Index: chrome/test/chromedriver/chrome/chrome_desktop_impl.h
|
| diff --git a/chrome/test/chromedriver/chrome/chrome_desktop_impl.h b/chrome/test/chromedriver/chrome/chrome_desktop_impl.h
|
| index c1f9974e2ea06486456be366539df5f6189ef311..6618a624a4c3cc9e0556d6e96591e1a371a42355 100644
|
| --- a/chrome/test/chromedriver/chrome/chrome_desktop_impl.h
|
| +++ b/chrome/test/chromedriver/chrome/chrome_desktop_impl.h
|
| @@ -82,12 +82,14 @@ class ChromeDesktopImpl : public ChromeImpl {
|
| int width;
|
| int height;
|
| };
|
| + Status ParseWindowBounds(std::unique_ptr<base::DictionaryValue> params,
|
| + Window* window);
|
| Status ParseWindow(std::unique_ptr<base::DictionaryValue> params,
|
| Window* window);
|
|
|
| Status GetWindow(const std::string& target_id, Window* window);
|
| - Status SetWindowState(int window_id, const std::string& window_state);
|
| - Status SetWindowBounds(const std::string& target_id,
|
| + Status GetWindowBounds(int window_id, Window* window);
|
| + Status SetWindowBounds(int window_id,
|
| std::unique_ptr<base::DictionaryValue> bounds);
|
|
|
| base::Process process_;
|
|
|