| 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/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/strings/stringprintf.h" | 6 #include "base/strings/stringprintf.h" |
| 7 #include "base/test/trace_event_analyzer.h" | 7 #include "base/test/trace_event_analyzer.h" |
| 8 #include "chrome/browser/extensions/extension_apitest.h" | 8 #include "chrome/browser/extensions/extension_apitest.h" |
| 9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
| 10 #include "chrome/browser/extensions/tab_helper.h" | 10 #include "chrome/browser/extensions/tab_helper.h" |
| 11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" | 12 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" |
| 13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 14 #include "chrome/test/base/test_launcher_utils.h" | 14 #include "chrome/test/base/test_launcher_utils.h" |
| 15 #include "chrome/test/base/test_switches.h" | 15 #include "chrome/test/base/test_switches.h" |
| 16 #include "chrome/test/base/tracing.h" | 16 #include "chrome/test/base/tracing.h" |
| 17 #include "content/public/common/content_switches.h" | 17 #include "content/public/common/content_switches.h" |
| 18 #include "extensions/common/feature_switch.h" | |
| 19 #include "extensions/common/features/base_feature_provider.h" | |
| 20 #include "extensions/common/features/complex_feature.h" | |
| 21 #include "extensions/common/features/feature.h" | |
| 22 #include "extensions/common/features/simple_feature.h" | |
| 23 #include "extensions/common/switches.h" | 18 #include "extensions/common/switches.h" |
| 24 #include "extensions/test/extension_test_message_listener.h" | 19 #include "extensions/test/extension_test_message_listener.h" |
| 25 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
| 26 #include "testing/perf/perf_test.h" | 21 #include "testing/perf/perf_test.h" |
| 27 #include "ui/compositor/compositor_switches.h" | 22 #include "ui/compositor/compositor_switches.h" |
| 28 #include "ui/gl/gl_switches.h" | 23 #include "ui/gl/gl_switches.h" |
| 29 | 24 |
| 30 #if defined(OS_WIN) | 25 #if defined(OS_WIN) |
| 31 #include "base/win/windows_version.h" | 26 #include "base/win/windows_version.h" |
| 32 #endif | 27 #endif |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 testing::Values( | 202 testing::Values( |
| 208 0, | 203 0, |
| 209 kUseGpu | kForceGpuComposited, | 204 kUseGpu | kForceGpuComposited, |
| 210 kDisableVsync, | 205 kDisableVsync, |
| 211 kDisableVsync | kUseGpu | kForceGpuComposited, | 206 kDisableVsync | kUseGpu | kForceGpuComposited, |
| 212 kTestThroughWebRTC, | 207 kTestThroughWebRTC, |
| 213 kTestThroughWebRTC | kUseGpu | kForceGpuComposited, | 208 kTestThroughWebRTC | kUseGpu | kForceGpuComposited, |
| 214 kTestThroughWebRTC | kDisableVsync, | 209 kTestThroughWebRTC | kDisableVsync, |
| 215 kTestThroughWebRTC | kDisableVsync | kUseGpu | kForceGpuComposited)); | 210 kTestThroughWebRTC | kDisableVsync | kUseGpu | kForceGpuComposited)); |
| 216 | 211 |
| OLD | NEW |