| 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) | |
| 8 #include "base/mac/mac_util.h" | |
| 9 #endif | |
| 10 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
| 11 #include "base/test/trace_event_analyzer.h" | 8 #include "base/test/trace_event_analyzer.h" |
| 12 #include "base/win/windows_version.h" | 9 #include "base/win/windows_version.h" |
| 13 #include "chrome/browser/extensions/extension_apitest.h" | 10 #include "chrome/browser/extensions/extension_apitest.h" |
| 14 #include "chrome/browser/extensions/extension_service.h" | 11 #include "chrome/browser/extensions/extension_service.h" |
| 15 #include "chrome/browser/extensions/tab_helper.h" | 12 #include "chrome/browser/extensions/tab_helper.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" | 14 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" |
| 18 #include "chrome/common/chrome_switches.h" | 15 #include "chrome/common/chrome_switches.h" |
| 19 #include "chrome/common/chrome_version_info.h" | 16 #include "chrome/common/chrome_version_info.h" |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 TabCapturePerformanceTest, | 247 TabCapturePerformanceTest, |
| 251 testing::Values( | 248 testing::Values( |
| 252 kScalingTestBase | kScaleQualityFast, | 249 kScalingTestBase | kScaleQualityFast, |
| 253 kScalingTestBase | kScaleQualityGood, | 250 kScalingTestBase | kScaleQualityGood, |
| 254 kScalingTestBase | kScaleQualityBest, | 251 kScalingTestBase | kScaleQualityBest, |
| 255 kScalingTestBase | kScaleQualityFast | kSmallWindow, | 252 kScalingTestBase | kScaleQualityFast | kSmallWindow, |
| 256 kScalingTestBase | kScaleQualityGood | kSmallWindow, | 253 kScalingTestBase | kScaleQualityGood | kSmallWindow, |
| 257 kScalingTestBase | kScaleQualityBest | kSmallWindow)); | 254 kScalingTestBase | kScaleQualityBest | kSmallWindow)); |
| 258 | 255 |
| 259 #endif // USE_AURA | 256 #endif // USE_AURA |
| OLD | NEW |