| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/process_util.h" | 10 #include "base/process_util.h" |
| 11 #include "base/string_number_conversions.h" | 11 #include "base/string_number_conversions.h" |
| 12 #include "base/sys_string_conversions.h" | 12 #include "base/sys_string_conversions.h" |
| 13 #include "base/utf_string_conversions.h" |
| 13 #include "chrome/browser/net/url_fixer_upper.h" | 14 #include "chrome/browser/net/url_fixer_upper.h" |
| 14 #include "chrome/common/chrome_constants.h" | 15 #include "chrome/common/chrome_constants.h" |
| 15 #include "chrome/common/chrome_paths.h" | 16 #include "chrome/common/chrome_paths.h" |
| 16 #include "chrome/common/chrome_switches.h" | 17 #include "chrome/common/chrome_switches.h" |
| 17 #include "chrome/test/automation/tab_proxy.h" | 18 #include "chrome/test/automation/tab_proxy.h" |
| 18 #include "chrome/test/automation/window_proxy.h" | 19 #include "chrome/test/automation/window_proxy.h" |
| 19 #include "chrome/test/chrome_process_util.h" | 20 #include "chrome/test/chrome_process_util.h" |
| 20 #include "chrome/test/ui/ui_test.h" | 21 #include "chrome/test/ui/ui_test.h" |
| 21 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
| 22 #include "net/base/net_util.h" | 23 #include "net/base/net_util.h" |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 InsertTransactions); | 493 InsertTransactions); |
| 493 PAGE_CYCLER_DATABASE_TESTS("update-transactions", | 494 PAGE_CYCLER_DATABASE_TESTS("update-transactions", |
| 494 UpdateTransactions); | 495 UpdateTransactions); |
| 495 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", | 496 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", |
| 496 DeleteTransactions); | 497 DeleteTransactions); |
| 497 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", | 498 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", |
| 498 PseudoRandomTransactions); | 499 PseudoRandomTransactions); |
| 499 #endif | 500 #endif |
| 500 | 501 |
| 501 } // namespace | 502 } // namespace |
| OLD | NEW |