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_STUB_WEB_VIEW_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_STUB_WEB_VIEW_H_ |
6 #define CHROME_TEST_CHROMEDRIVER_STUB_WEB_VIEW_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_STUB_WEB_VIEW_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "chrome/test/chromedriver/web_view.h" | 13 #include "chrome/test/chromedriver/chrome/web_view.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class ListValue; | 16 class ListValue; |
17 class Value; | 17 class Value; |
18 } | 18 } |
19 | 19 |
20 struct KeyEvent; | 20 struct KeyEvent; |
21 struct MouseEvent; | 21 struct MouseEvent; |
22 class Status; | 22 class Status; |
23 | 23 |
(...skipping 30 matching lines...) Expand all Loading... |
54 virtual Status IsPendingNavigation( | 54 virtual Status IsPendingNavigation( |
55 const std::string& frame_id, bool* is_pending) OVERRIDE; | 55 const std::string& frame_id, bool* is_pending) OVERRIDE; |
56 virtual Status GetMainFrame(std::string* frame_id) OVERRIDE; | 56 virtual Status GetMainFrame(std::string* frame_id) OVERRIDE; |
57 virtual JavaScriptDialogManager* GetJavaScriptDialogManager() OVERRIDE; | 57 virtual JavaScriptDialogManager* GetJavaScriptDialogManager() OVERRIDE; |
58 virtual Status CaptureScreenshot(std::string* screenshot) OVERRIDE; | 58 virtual Status CaptureScreenshot(std::string* screenshot) OVERRIDE; |
59 | 59 |
60 private: | 60 private: |
61 std::string id_; | 61 std::string id_; |
62 }; | 62 }; |
63 | 63 |
64 #endif // CHROME_TEST_CHROMEDRIVER_STUB_WEB_VIEW_H_ | 64 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_STUB_WEB_VIEW_H_ |
OLD | NEW |