| 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/app/chrome_dll_resource.h" | 5 #include "chrome/app/chrome_command_ids.h" |
| 6 #include "chrome/common/chrome_switches.h" | 6 #include "chrome/common/chrome_switches.h" |
| 7 #include "chrome/common/url_constants.h" | 7 #include "chrome/common/url_constants.h" |
| 8 #include "chrome/test/automation/tab_proxy.h" | 8 #include "chrome/test/automation/tab_proxy.h" |
| 9 #include "chrome/test/ui/ui_layout_test.h" | 9 #include "chrome/test/ui/ui_layout_test.h" |
| 10 #include "chrome/test/ui_test_utils.h" | 10 #include "chrome/test/ui_test_utils.h" |
| 11 #include "net/base/escape.h" | 11 #include "net/base/escape.h" |
| 12 #include "net/test/test_server.h" | 12 #include "net/test/test_server.h" |
| 13 | 13 |
| 14 struct IsSearchProviderTestData; | 14 struct IsSearchProviderTestData; |
| 15 | 15 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 #if 0 | 161 #if 0 |
| 162 // Remove the calls to FinishIsSearchProviderInstalledTest above when | 162 // Remove the calls to FinishIsSearchProviderInstalledTest above when |
| 163 // re-enabling this code. | 163 // re-enabling this code. |
| 164 | 164 |
| 165 // Do the verification. | 165 // Do the verification. |
| 166 for (size_t i = 0; i < arraysize(test_data); ++i) { | 166 for (size_t i = 0; i < arraysize(test_data); ++i) { |
| 167 FinishIsSearchProviderInstalledTest(test_data[i]); | 167 FinishIsSearchProviderInstalledTest(test_data[i]); |
| 168 } | 168 } |
| 169 #endif | 169 #endif |
| 170 } | 170 } |
| OLD | NEW |