OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_FRAME_TEST_CHROME_FRAME_TEST_UTILS_H_ | 5 #ifndef CHROME_FRAME_TEST_CHROME_FRAME_TEST_UTILS_H_ |
6 #define CHROME_FRAME_TEST_CHROME_FRAME_TEST_UTILS_H_ | 6 #define CHROME_FRAME_TEST_CHROME_FRAME_TEST_UTILS_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlcom.h> | 9 #include <atlcom.h> |
10 #include <string> | 10 #include <string> |
11 #include <exdisp.h> | 11 #include <exdisp.h> |
12 #include <exdispid.h> | 12 #include <exdispid.h> |
13 #include <mshtml.h> | 13 #include <mshtml.h> |
14 #include <shlguid.h> | 14 #include <shlguid.h> |
15 #include <shobjidl.h> | 15 #include <shobjidl.h> |
16 #include <windows.h> | 16 #include <windows.h> |
17 | 17 |
18 #include "base/basictypes.h" | 18 #include "base/basictypes.h" |
19 #include "base/message_loop.h" | 19 #include "base/message_loop.h" |
20 #include "base/process_util.h" | 20 #include "base/process_util.h" |
21 #include "base/scoped_comptr_win.h" | 21 #include "base/scoped_comptr_win.h" |
22 #include "base/scoped_variant_win.h" | |
23 | 22 |
24 #include "chrome_frame/test_utils.h" | 23 #include "chrome_frame/test_utils.h" |
25 #include "chrome_frame/test/simulate_input.h" | 24 #include "chrome_frame/test/simulate_input.h" |
26 #include "chrome_frame/utils.h" | 25 #include "chrome_frame/utils.h" |
27 | 26 |
28 // Include without path to make GYP build see it. | 27 // Include without path to make GYP build see it. |
29 #include "chrome_tab.h" // NOLINT | 28 #include "chrome_tab.h" // NOLINT |
30 | 29 |
31 namespace chrome_frame_test { | 30 namespace chrome_frame_test { |
32 | 31 |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 // Same as above except that it writes the tree for the given window. | 425 // Same as above except that it writes the tree for the given window. |
427 void DumpAccessibilityTreeForWindow(HWND hwnd); | 426 void DumpAccessibilityTreeForWindow(HWND hwnd); |
428 | 427 |
429 // Starts the Chrome crash service which enables us to gather crash dumps | 428 // Starts the Chrome crash service which enables us to gather crash dumps |
430 // during test runs. | 429 // during test runs. |
431 base::ProcessHandle StartCrashService(); | 430 base::ProcessHandle StartCrashService(); |
432 | 431 |
433 } // namespace chrome_frame_test | 432 } // namespace chrome_frame_test |
434 | 433 |
435 #endif // CHROME_FRAME_TEST_CHROME_FRAME_TEST_UTILS_H_ | 434 #endif // CHROME_FRAME_TEST_CHROME_FRAME_TEST_UTILS_H_ |
OLD | NEW |