OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ |
6 #define CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 Status ExecuteSetWindowSize( | 152 Status ExecuteSetWindowSize( |
153 Session* session, | 153 Session* session, |
154 const base::DictionaryValue& params, | 154 const base::DictionaryValue& params, |
155 scoped_ptr<base::Value>* value); | 155 scoped_ptr<base::Value>* value); |
156 | 156 |
157 Status ExecuteMaximizeWindow( | 157 Status ExecuteMaximizeWindow( |
158 Session* session, | 158 Session* session, |
159 const base::DictionaryValue& params, | 159 const base::DictionaryValue& params, |
160 scoped_ptr<base::Value>* value); | 160 scoped_ptr<base::Value>* value); |
161 | 161 |
| 162 Status ExecuteGetAvailableLogTypes( |
| 163 Session* session, |
| 164 const base::DictionaryValue& params, |
| 165 scoped_ptr<base::Value>* value); |
| 166 |
| 167 Status ExecuteGetLog( |
| 168 Session* session, |
| 169 const base::DictionaryValue& params, |
| 170 scoped_ptr<base::Value>* value); |
| 171 |
162 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ | 172 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ |
OLD | NEW |