OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "app/l10n_util.h" |
5 #include "base/file_path.h" | 6 #include "base/file_path.h" |
6 #include "base/gfx/native_widget_types.h" | 7 #include "base/gfx/native_widget_types.h" |
7 #include "base/string_util.h" | 8 #include "base/string_util.h" |
8 #include "base/sys_info.h" | 9 #include "base/sys_info.h" |
9 #include "base/values.h" | 10 #include "base/values.h" |
10 #include "chrome/app/chrome_dll_resource.h" | 11 #include "chrome/app/chrome_dll_resource.h" |
11 #include "chrome/common/chrome_constants.h" | 12 #include "chrome/common/chrome_constants.h" |
12 #include "chrome/common/l10n_util.h" | |
13 #include "chrome/common/platform_util.h" | 13 #include "chrome/common/platform_util.h" |
14 #include "chrome/common/pref_names.h" | 14 #include "chrome/common/pref_names.h" |
15 #include "chrome/test/automation/browser_proxy.h" | 15 #include "chrome/test/automation/browser_proxy.h" |
16 #include "chrome/test/automation/tab_proxy.h" | 16 #include "chrome/test/automation/tab_proxy.h" |
17 #include "chrome/test/automation/window_proxy.h" | 17 #include "chrome/test/automation/window_proxy.h" |
18 #include "chrome/test/ui/ui_test.h" | 18 #include "chrome/test/ui/ui_test.h" |
19 #include "net/base/net_util.h" | 19 #include "net/base/net_util.h" |
20 #include "net/url_request/url_request_unittest.h" | 20 #include "net/url_request/url_request_unittest.h" |
21 #include "grit/chromium_strings.h" | 21 #include "grit/chromium_strings.h" |
22 #include "grit/generated_resources.h" | 22 #include "grit/generated_resources.h" |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 break; | 295 break; |
296 } | 296 } |
297 } | 297 } |
298 | 298 |
299 if (i == 10) | 299 if (i == 10) |
300 FAIL() << "failed to get error page title"; | 300 FAIL() << "failed to get error page title"; |
301 } | 301 } |
302 #endif | 302 #endif |
303 | 303 |
304 } // namespace | 304 } // namespace |
OLD | NEW |