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

Unified Diff: chrome/browser/devtools/chrome_devtools_manager_delegate.h

Issue 2734123004: add a new set of commands to resize and position windows (Closed)
Patch Set: add tests Created 3 years, 9 months 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: chrome/browser/devtools/chrome_devtools_manager_delegate.h
diff --git a/chrome/browser/devtools/chrome_devtools_manager_delegate.h b/chrome/browser/devtools/chrome_devtools_manager_delegate.h
index 6dcaef263c9c6242ddad29abd461d8ea9d4b5ccb..c07ab75aa1d705c819f094531ed475fd42cf6839 100644
--- a/chrome/browser/devtools/chrome_devtools_manager_delegate.h
+++ b/chrome/browser/devtools/chrome_devtools_manager_delegate.h
@@ -26,6 +26,16 @@ class ChromeDevToolsManagerDelegate :
static char kTypeBackgroundPage[];
static char kTypeWebView[];
+ static std::unique_ptr<base::DictionaryValue> GetWindowForTarget(
dgozman 2017/03/23 22:56:01 Move this to private, and add a friend class DevTo
jzfeng 2017/03/24 02:24:40 Done.
+ int id,
+ base::DictionaryValue* params);
+ static std::unique_ptr<base::DictionaryValue> GetWindowBounds(
+ int id,
+ base::DictionaryValue* params);
+ static std::unique_ptr<base::DictionaryValue> SetWindowBounds(
+ int id,
+ base::DictionaryValue* params);
+
ChromeDevToolsManagerDelegate();
~ChromeDevToolsManagerDelegate() override;

Powered by Google App Engine
This is Rietveld 408576698