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/test/ui/ui_test.h" | 5 #include "chrome/test/ui/ui_test.h" |
6 | 6 |
7 #if defined(OS_POSIX) | 7 #if defined(OS_POSIX) |
8 #include <signal.h> | 8 #include <signal.h> |
9 #include <sys/types.h> | 9 #include <sys/types.h> |
10 #endif | 10 #endif |
11 | 11 |
12 #include <set> | 12 #include <set> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "app/sql/connection.h" | 15 #include "app/sql/connection.h" |
16 #include "base/base_switches.h" | 16 #include "base/base_switches.h" |
17 #include "base/command_line.h" | 17 #include "base/command_line.h" |
18 #include "base/file_path.h" | 18 #include "base/file_path.h" |
19 #include "base/file_util.h" | 19 #include "base/file_util.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/scoped_ptr.h" | 23 #include "base/scoped_ptr.h" |
24 #include "base/scoped_temp_dir.h" | 24 #include "base/scoped_temp_dir.h" |
25 #include "base/string_number_conversions.h" | 25 #include "base/string_number_conversions.h" |
26 #include "base/test/test_file_util.h" | 26 #include "base/test/test_file_util.h" |
27 #include "base/time.h" | 27 #include "base/time.h" |
| 28 #include "base/utf_string_conversions.h" |
28 #include "chrome/app/chrome_dll_resource.h" | 29 #include "chrome/app/chrome_dll_resource.h" |
29 #include "chrome/browser/net/url_fixer_upper.h" | 30 #include "chrome/browser/net/url_fixer_upper.h" |
30 #include "chrome/common/chrome_constants.h" | 31 #include "chrome/common/chrome_constants.h" |
31 #include "chrome/common/chrome_paths.h" | 32 #include "chrome/common/chrome_paths.h" |
32 #include "chrome/common/chrome_switches.h" | 33 #include "chrome/common/chrome_switches.h" |
33 #include "chrome/common/debug_flags.h" | 34 #include "chrome/common/debug_flags.h" |
34 #include "chrome/common/logging_chrome.h" | 35 #include "chrome/common/logging_chrome.h" |
35 #include "chrome/common/json_value_serializer.h" | 36 #include "chrome/common/json_value_serializer.h" |
36 #include "chrome/common/url_constants.h" | 37 #include "chrome/common/url_constants.h" |
37 #include "chrome/test/automation/automation_messages.h" | 38 #include "chrome/test/automation/automation_messages.h" |
(...skipping 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1520 test_info->name()); | 1521 test_info->name()); |
1521 } | 1522 } |
1522 UITestBase::SetUp(); | 1523 UITestBase::SetUp(); |
1523 PlatformTest::SetUp(); | 1524 PlatformTest::SetUp(); |
1524 } | 1525 } |
1525 | 1526 |
1526 void UITest::TearDown() { | 1527 void UITest::TearDown() { |
1527 UITestBase::TearDown(); | 1528 UITestBase::TearDown(); |
1528 PlatformTest::TearDown(); | 1529 PlatformTest::TearDown(); |
1529 } | 1530 } |
OLD | NEW |