| 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_CHROME_WEB_VIEW_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_ |
| 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class DictionaryValue; | 15 class DictionaryValue; |
| 16 class FilePath; | 16 class FilePath; |
| 17 class ListValue; | 17 class ListValue; |
| 18 class TimeDelta; | 18 class TimeDelta; |
| 19 class Value; | 19 class Value; |
| 20 } | 20 } |
| 21 | 21 |
| 22 class DevToolsClient; | |
| 23 struct Geoposition; | 22 struct Geoposition; |
| 24 class JavaScriptDialogManager; | 23 class JavaScriptDialogManager; |
| 25 struct KeyEvent; | 24 struct KeyEvent; |
| 26 struct MouseEvent; | 25 struct MouseEvent; |
| 27 struct NetworkConditions; | 26 struct NetworkConditions; |
| 28 class Status; | 27 class Status; |
| 29 class Timeout; | 28 class Timeout; |
| 30 struct TouchEvent; | 29 struct TouchEvent; |
| 31 | 30 |
| 32 class WebView { | 31 class WebView { |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 virtual Status SynthesizePinchGesture(int x, int y, double scale_factor) = 0; | 191 virtual Status SynthesizePinchGesture(int x, int y, double scale_factor) = 0; |
| 193 | 192 |
| 194 virtual Status GetScreenOrientation(std::string* orientation) = 0; | 193 virtual Status GetScreenOrientation(std::string* orientation) = 0; |
| 195 | 194 |
| 196 virtual Status SetScreenOrientation(std::string orientation) = 0; | 195 virtual Status SetScreenOrientation(std::string orientation) = 0; |
| 197 | 196 |
| 198 virtual Status DeleteScreenOrientation() = 0; | 197 virtual Status DeleteScreenOrientation() = 0; |
| 199 }; | 198 }; |
| 200 | 199 |
| 201 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_ | 200 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_ |
| OLD | NEW |