| 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_ELEMENT_UTIL_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_ELEMENT_UTIL_H_ |
| 6 #define CHROME_TEST_CHROMEDRIVER_ELEMENT_UTIL_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_ELEMENT_UTIL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/test/chromedriver/basic_types.h" | 11 #include "chrome/test/chromedriver/basic_types.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class DictionaryValue; | 14 class DictionaryValue; |
| 15 class ListValue; | |
| 16 class Value; | 15 class Value; |
| 17 } | 16 } |
| 18 | 17 |
| 19 struct Session; | 18 struct Session; |
| 20 class Status; | 19 class Status; |
| 21 class WebView; | 20 class WebView; |
| 22 | 21 |
| 23 std::unique_ptr<base::DictionaryValue> CreateElement( | 22 std::unique_ptr<base::DictionaryValue> CreateElement( |
| 24 const std::string& element_id); | 23 const std::string& element_id); |
| 25 | 24 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 Status ScrollElementRegionIntoView( | 144 Status ScrollElementRegionIntoView( |
| 146 Session* session, | 145 Session* session, |
| 147 WebView* web_view, | 146 WebView* web_view, |
| 148 const std::string& element_id, | 147 const std::string& element_id, |
| 149 const WebRect& region, | 148 const WebRect& region, |
| 150 bool center, | 149 bool center, |
| 151 const std::string& clickable_element_id, | 150 const std::string& clickable_element_id, |
| 152 WebPoint* location); | 151 WebPoint* location); |
| 153 | 152 |
| 154 #endif // CHROME_TEST_CHROMEDRIVER_ELEMENT_UTIL_H_ | 153 #endif // CHROME_TEST_CHROMEDRIVER_ELEMENT_UTIL_H_ |
| OLD | NEW |