| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEBDRIVER_WEBDRIVER_AUTOMATION_H_ | 5 #ifndef CHROME_TEST_WEBDRIVER_WEBDRIVER_AUTOMATION_H_ |
| 6 #define CHROME_TEST_WEBDRIVER_WEBDRIVER_AUTOMATION_H_ | 6 #define CHROME_TEST_WEBDRIVER_WEBDRIVER_AUTOMATION_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/task.h" | |
| 17 #include "chrome/common/automation_constants.h" | 16 #include "chrome/common/automation_constants.h" |
| 18 #include "chrome/test/webdriver/webdriver_logging.h" | 17 #include "chrome/test/webdriver/webdriver_logging.h" |
| 19 #include "ui/base/keycodes/keyboard_codes.h" | 18 #include "ui/base/keycodes/keyboard_codes.h" |
| 20 | 19 |
| 21 class AutomationId; | 20 class AutomationId; |
| 22 class AutomationProxy; | 21 class AutomationProxy; |
| 23 class ProxyLauncher; | 22 class ProxyLauncher; |
| 24 struct WebKeyEvent; | 23 struct WebKeyEvent; |
| 25 class WebViewId; | 24 class WebViewId; |
| 26 struct WebViewInfo; | 25 struct WebViewInfo; |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 | 234 |
| 236 const Logger& logger_; | 235 const Logger& logger_; |
| 237 scoped_ptr<ProxyLauncher> launcher_; | 236 scoped_ptr<ProxyLauncher> launcher_; |
| 238 | 237 |
| 239 DISALLOW_COPY_AND_ASSIGN(Automation); | 238 DISALLOW_COPY_AND_ASSIGN(Automation); |
| 240 }; | 239 }; |
| 241 | 240 |
| 242 } // namespace webdriver | 241 } // namespace webdriver |
| 243 | 242 |
| 244 #endif // CHROME_TEST_WEBDRIVER_WEBDRIVER_AUTOMATION_H_ | 243 #endif // CHROME_TEST_WEBDRIVER_WEBDRIVER_AUTOMATION_H_ |
| OLD | NEW |