Chromium Code Reviews| Index: chrome/browser/automation/testing_automation_provider.h |
| diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h |
| index ea66114110692ac143131b1057f0e26086456994..ab01bbcf260c6ff3ba319958ed56edec844d5129 100644 |
| --- a/chrome/browser/automation/testing_automation_provider.h |
| +++ b/chrome/browser/automation/testing_automation_provider.h |
| @@ -1095,6 +1095,13 @@ class TestingAutomationProvider : public AutomationProvider, |
| // output: none |
| void SetViewBounds(base::DictionaryValue* args, IPC::Message* reply_message); |
| + // Maximizes the web view. |
| + // The single |auto_id| must be given to specify the view. |
| + // Example: |
| + // input: { "auto_id": { "type": 0, "id": "awoein" } } |
| + // output: none |
| + void MaximizeWindow(base::DictionaryValue* args, IPC::Message* reply_message); |
|
kkania
2012/05/23 17:49:20
I'd change this to MaximizeView to be consistent.
zori
2012/05/24 00:39:33
Done.
|
| + |
| // Sends the WebKit events for a mouse click at a given coordinate. |
| // The pair |windex| and |tab_index| or the single |auto_id| must be given |
| // to specify the render view. |