| 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_IMPL_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ |
| 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 struct DeviceMetrics; | 24 struct DeviceMetrics; |
| 25 class DevToolsClient; | 25 class DevToolsClient; |
| 26 class DomTracker; | 26 class DomTracker; |
| 27 class FrameTracker; | 27 class FrameTracker; |
| 28 class GeolocationOverrideManager; | 28 class GeolocationOverrideManager; |
| 29 class MobileEmulationOverrideManager; | 29 class MobileEmulationOverrideManager; |
| 30 class NetworkConditionsOverrideManager; | 30 class NetworkConditionsOverrideManager; |
| 31 class HeapSnapshotTaker; | 31 class HeapSnapshotTaker; |
| 32 struct KeyEvent; | 32 struct KeyEvent; |
| 33 struct MouseEvent; | 33 struct MouseEvent; |
| 34 class NavigationTracker; | |
| 35 class NonBlockingNavigationTracker; | |
| 36 class PageLoadStrategy; | 34 class PageLoadStrategy; |
| 37 class Status; | 35 class Status; |
| 38 | 36 |
| 39 class WebViewImpl : public WebView { | 37 class WebViewImpl : public WebView { |
| 40 public: | 38 public: |
| 41 WebViewImpl(const std::string& id, | 39 WebViewImpl(const std::string& id, |
| 42 const BrowserInfo* browser_info, | 40 const BrowserInfo* browser_info, |
| 43 std::unique_ptr<DevToolsClient> client); | 41 std::unique_ptr<DevToolsClient> client); |
| 44 WebViewImpl(const std::string& id, | 42 WebViewImpl(const std::string& id, |
| 45 const BrowserInfo* browser_info, | 43 const BrowserInfo* browser_info, |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 Status GetNodeIdFromFunction(DevToolsClient* client, | 170 Status GetNodeIdFromFunction(DevToolsClient* client, |
| 173 int context_id, | 171 int context_id, |
| 174 const std::string& function, | 172 const std::string& function, |
| 175 const base::ListValue& args, | 173 const base::ListValue& args, |
| 176 bool* found_node, | 174 bool* found_node, |
| 177 int* node_id); | 175 int* node_id); |
| 178 | 176 |
| 179 } // namespace internal | 177 } // namespace internal |
| 180 | 178 |
| 181 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ | 179 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ |
| OLD | NEW |