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 #include "chrome_frame/test/chrome_frame_test_utils.h" | 5 #include "chrome_frame/test/chrome_frame_test_utils.h" |
6 | 6 |
7 #include <atlbase.h> | 7 #include <atlbase.h> |
8 #include <atlwin.h> | 8 #include <atlwin.h> |
9 #include <iepmapi.h> | 9 #include <iepmapi.h> |
10 #include <oleacc.h> | 10 #include <oleacc.h> |
11 #include <oleauto.h> | 11 #include <oleauto.h> |
12 #include <sddl.h> | 12 #include <sddl.h> |
13 | 13 |
14 #include <sstream> | 14 #include <sstream> |
15 | 15 |
16 #include "base/command_line.h" | 16 #include "base/command_line.h" |
17 #include "base/file_version_info.h" | 17 #include "base/file_version_info.h" |
18 #include "base/file_util.h" | 18 #include "base/file_util.h" |
19 #include "base/message_loop.h" | 19 #include "base/message_loop.h" |
20 #include "base/path_service.h" | 20 #include "base/path_service.h" |
21 #include "base/platform_thread.h" | 21 #include "base/platform_thread.h" |
22 #include "base/process_util.h" | 22 #include "base/process_util.h" |
23 #include "base/registry.h" // to find IE and firefox | 23 #include "base/registry.h" // to find IE and firefox |
24 #include "base/scoped_bstr_win.h" | 24 #include "base/scoped_bstr_win.h" |
25 #include "base/scoped_handle.h" | 25 #include "base/scoped_handle.h" |
26 #include "base/scoped_comptr_win.h" | 26 #include "base/scoped_variant_win.h" |
27 #include "base/string_util.h" | 27 #include "base/string_util.h" |
28 #include "base/utf_string_conversions.h" | 28 #include "base/utf_string_conversions.h" |
29 #include "base/win_util.h" | 29 #include "base/win_util.h" |
30 #include "chrome/common/chrome_switches.h" | 30 #include "chrome/common/chrome_switches.h" |
31 #include "chrome/common/chrome_paths.h" | 31 #include "chrome/common/chrome_paths.h" |
32 #include "chrome/common/chrome_paths_internal.h" | 32 #include "chrome/common/chrome_paths_internal.h" |
33 #include "chrome_frame/test/win_event_receiver.h" | 33 #include "chrome_frame/test/win_event_receiver.h" |
34 #include "chrome_frame/utils.h" | 34 #include "chrome_frame/utils.h" |
35 | 35 |
36 #include "testing/gtest/include/gtest/gtest.h" | 36 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1257 } | 1257 } |
1258 | 1258 |
1259 DLOG(INFO) << "Started crash_service.exe so you know if a test crashes!"; | 1259 DLOG(INFO) << "Started crash_service.exe so you know if a test crashes!"; |
1260 // This sleep is to ensure that the crash service is done initializing, i.e | 1260 // This sleep is to ensure that the crash service is done initializing, i.e |
1261 // the pipe creation, etc. | 1261 // the pipe creation, etc. |
1262 Sleep(500); | 1262 Sleep(500); |
1263 return crash_service; | 1263 return crash_service; |
1264 } | 1264 } |
1265 | 1265 |
1266 } // namespace chrome_frame_test | 1266 } // namespace chrome_frame_test |
OLD | NEW |