| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/string_util.h" |
| 5 #include "base/test/test_timeouts.h" | 6 #include "base/test/test_timeouts.h" |
| 6 #include "chrome/app/chrome_command_ids.h" | 7 #include "chrome/app/chrome_command_ids.h" |
| 7 #include "chrome/common/chrome_switches.h" | 8 #include "chrome/common/chrome_switches.h" |
| 8 #include "chrome/common/url_constants.h" | 9 #include "chrome/common/url_constants.h" |
| 9 #include "chrome/test/automation/tab_proxy.h" | 10 #include "chrome/test/automation/tab_proxy.h" |
| 10 #include "chrome/test/ui/ui_layout_test.h" | 11 #include "chrome/test/ui/ui_layout_test.h" |
| 11 #include "chrome/test/ui_test_utils.h" | 12 #include "chrome/test/ui_test_utils.h" |
| 12 #include "net/base/escape.h" | 13 #include "net/base/escape.h" |
| 13 #include "net/test/test_server.h" | 14 #include "net/test/test_server.h" |
| 14 | 15 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 #if 0 | 166 #if 0 |
| 166 // Remove the calls to FinishIsSearchProviderInstalledTest above when | 167 // Remove the calls to FinishIsSearchProviderInstalledTest above when |
| 167 // re-enabling this code. | 168 // re-enabling this code. |
| 168 | 169 |
| 169 // Do the verification. | 170 // Do the verification. |
| 170 for (size_t i = 0; i < arraysize(test_data); ++i) { | 171 for (size_t i = 0; i < arraysize(test_data); ++i) { |
| 171 FinishIsSearchProviderInstalledTest(test_data[i]); | 172 FinishIsSearchProviderInstalledTest(test_data[i]); |
| 172 } | 173 } |
| 173 #endif | 174 #endif |
| 174 } | 175 } |
| OLD | NEW |