OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #if defined(OS_MACOSX) | 7 #if defined(OS_MACOSX) |
8 #include "base/mac/mac_util.h" | 8 #include "base/mac/mac_util.h" |
9 #endif | 9 #endif |
10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "chrome/common/extensions/features/simple_feature.h" | 24 #include "chrome/common/extensions/features/simple_feature.h" |
25 #include "chrome/test/base/test_launcher_utils.h" | 25 #include "chrome/test/base/test_launcher_utils.h" |
26 #include "chrome/test/base/test_switches.h" | 26 #include "chrome/test/base/test_switches.h" |
27 #include "chrome/test/base/tracing.h" | 27 #include "chrome/test/base/tracing.h" |
28 #include "chrome/test/perf/perf_test.h" | 28 #include "chrome/test/perf/perf_test.h" |
29 #include "content/public/browser/render_process_host.h" | 29 #include "content/public/browser/render_process_host.h" |
30 #include "content/public/browser/render_view_host.h" | 30 #include "content/public/browser/render_view_host.h" |
31 #include "content/public/common/content_switches.h" | 31 #include "content/public/common/content_switches.h" |
32 #include "extensions/common/features/feature.h" | 32 #include "extensions/common/features/feature.h" |
33 #include "testing/gtest/include/gtest/gtest.h" | 33 #include "testing/gtest/include/gtest/gtest.h" |
| 34 #include "testing/perf/perf_test.h" |
34 #include "ui/compositor/compositor_switches.h" | 35 #include "ui/compositor/compositor_switches.h" |
35 #include "ui/gl/gl_switches.h" | 36 #include "ui/gl/gl_switches.h" |
36 | 37 |
37 namespace chrome { | 38 namespace chrome { |
38 | 39 |
39 namespace { | 40 namespace { |
40 | 41 |
41 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf"; | 42 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf"; |
42 | 43 |
43 enum TestFlags { | 44 enum TestFlags { |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 kScalingTestBase | kScaleQualityFast, | 271 kScalingTestBase | kScaleQualityFast, |
271 kScalingTestBase | kScaleQualityGood, | 272 kScalingTestBase | kScaleQualityGood, |
272 kScalingTestBase | kScaleQualityBest, | 273 kScalingTestBase | kScaleQualityBest, |
273 kScalingTestBase | kScaleQualityFast | kSmallWindow, | 274 kScalingTestBase | kScaleQualityFast | kSmallWindow, |
274 kScalingTestBase | kScaleQualityGood | kSmallWindow, | 275 kScalingTestBase | kScaleQualityGood | kSmallWindow, |
275 kScalingTestBase | kScaleQualityBest | kSmallWindow)); | 276 kScalingTestBase | kScaleQualityBest | kSmallWindow)); |
276 | 277 |
277 #endif // USE_AURA | 278 #endif // USE_AURA |
278 | 279 |
279 } // namespace chrome | 280 } // namespace chrome |
OLD | NEW |