OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_util.h" | 7 #include "base/file_util.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/process_util.h" | |
11 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
12 #include "base/threading/platform_thread.h" | 11 #include "base/threading/platform_thread.h" |
13 #include "base/threading/thread_restrictions.h" | 12 #include "base/threading/thread_restrictions.h" |
14 #include "chrome/browser/net/url_fixer_upper.h" | 13 #include "chrome/browser/net/url_fixer_upper.h" |
15 #include "chrome/common/chrome_constants.h" | 14 #include "chrome/common/chrome_constants.h" |
16 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
17 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
18 #include "chrome/test/automation/automation_proxy.h" | 17 #include "chrome/test/automation/automation_proxy.h" |
19 #include "chrome/test/automation/browser_proxy.h" | 18 #include "chrome/test/automation/browser_proxy.h" |
20 #include "chrome/test/automation/tab_proxy.h" | 19 #include "chrome/test/automation/tab_proxy.h" |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 GENERAL_MIX_MEMORY_TESTS(SingleTabTest, 1); | 516 GENERAL_MIX_MEMORY_TESTS(SingleTabTest, 1); |
518 GENERAL_MIX_MEMORY_TESTS(FiveTabTest, 5); | 517 GENERAL_MIX_MEMORY_TESTS(FiveTabTest, 5); |
519 GENERAL_MIX_MEMORY_TESTS(TwelveTabTest, 12); | 518 GENERAL_MIX_MEMORY_TESTS(TwelveTabTest, 12); |
520 | 519 |
521 // Commented out until the recorded cache data is added. | 520 // Commented out until the recorded cache data is added. |
522 //TEST_F(MembusterMemoryTest, Windows) { | 521 //TEST_F(MembusterMemoryTest, Windows) { |
523 // RunTest("membuster", 0); | 522 // RunTest("membuster", 0); |
524 //} | 523 //} |
525 | 524 |
526 } // namespace | 525 } // namespace |
OLD | NEW |