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_WINDOW_COMMANDS_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_WINDOW_COMMANDS_H_ |
6 #define CHROME_TEST_CHROMEDRIVER_WINDOW_COMMANDS_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_WINDOW_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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 WebView* web_view, | 289 WebView* web_view, |
290 const base::DictionaryValue& params, | 290 const base::DictionaryValue& params, |
291 scoped_ptr<base::Value>* value); | 291 scoped_ptr<base::Value>* value); |
292 | 292 |
293 Status ExecuteSetNetworkConditions( | 293 Status ExecuteSetNetworkConditions( |
294 Session* session, | 294 Session* session, |
295 WebView* web_view, | 295 WebView* web_view, |
296 const base::DictionaryValue& params, | 296 const base::DictionaryValue& params, |
297 scoped_ptr<base::Value>* value); | 297 scoped_ptr<base::Value>* value); |
298 | 298 |
| 299 Status ExecuteDeleteNetworkConditions( |
| 300 Session* session, |
| 301 WebView* web_view, |
| 302 const base::DictionaryValue& params, |
| 303 scoped_ptr<base::Value>* value); |
| 304 |
299 Status ExecuteTakeHeapSnapshot( | 305 Status ExecuteTakeHeapSnapshot( |
300 Session* session, | 306 Session* session, |
301 WebView* web_view, | 307 WebView* web_view, |
302 const base::DictionaryValue& params, | 308 const base::DictionaryValue& params, |
303 scoped_ptr<base::Value>* value); | 309 scoped_ptr<base::Value>* value); |
304 | 310 |
305 #endif // CHROME_TEST_CHROMEDRIVER_WINDOW_COMMANDS_H_ | 311 #endif // CHROME_TEST_CHROMEDRIVER_WINDOW_COMMANDS_H_ |
OLD | NEW |