Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <map> | 5 #include <map> |
| 6 #include <vector> | 6 #include <vector> |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 11 #include "base/test/trace_event_analyzer.h" | 11 #include "base/test/trace_event_analyzer.h" |
| 12 #include "base/time/default_tick_clock.h" | 12 #include "base/time/default_tick_clock.h" |
| 13 #include "base/win/windows_version.h" | 13 #include "base/win/windows_version.h" |
| 14 #include "chrome/browser/extensions/extension_apitest.h" | 14 #include "chrome/browser/extensions/extension_apitest.h" |
| 15 #include "chrome/browser/extensions/extension_service.h" | 15 #include "chrome/browser/extensions/extension_service.h" |
| 16 #include "chrome/browser/extensions/tab_helper.h" | 16 #include "chrome/browser/extensions/tab_helper.h" |
| 17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
| 18 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" | 18 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" |
| 19 #include "chrome/common/channel_info.h" | |
|
brettw
2015/07/31 21:13:15
Ditto
| |
| 19 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
| 20 #include "chrome/common/chrome_version_info.h" | |
| 21 #include "chrome/test/base/test_launcher_utils.h" | 21 #include "chrome/test/base/test_launcher_utils.h" |
| 22 #include "chrome/test/base/test_switches.h" | 22 #include "chrome/test/base/test_switches.h" |
| 23 #include "chrome/test/base/tracing.h" | 23 #include "chrome/test/base/tracing.h" |
| 24 #include "content/public/browser/render_process_host.h" | 24 #include "content/public/browser/render_process_host.h" |
| 25 #include "content/public/browser/render_view_host.h" | 25 #include "content/public/browser/render_view_host.h" |
| 26 #include "content/public/common/content_switches.h" | 26 #include "content/public/common/content_switches.h" |
| 27 #include "extensions/common/feature_switch.h" | 27 #include "extensions/common/feature_switch.h" |
| 28 #include "extensions/common/features/base_feature_provider.h" | 28 #include "extensions/common/features/base_feature_provider.h" |
| 29 #include "extensions/common/features/complex_feature.h" | 29 #include "extensions/common/features/complex_feature.h" |
| 30 #include "extensions/common/features/feature.h" | 30 #include "extensions/common/features/feature.h" |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 668 CastV2PerformanceTest, | 668 CastV2PerformanceTest, |
| 669 testing::Values( | 669 testing::Values( |
| 670 kUseGpu | k24fps, | 670 kUseGpu | k24fps, |
| 671 kUseGpu | k30fps, | 671 kUseGpu | k30fps, |
| 672 kUseGpu | k60fps, | 672 kUseGpu | k60fps, |
| 673 kUseGpu | k24fps | kDisableVsync, | 673 kUseGpu | k24fps | kDisableVsync, |
| 674 kUseGpu | k30fps | kProxyWifi, | 674 kUseGpu | k30fps | kProxyWifi, |
| 675 kUseGpu | k30fps | kProxyBad, | 675 kUseGpu | k30fps | kProxyBad, |
| 676 kUseGpu | k30fps | kSlowClock, | 676 kUseGpu | k30fps | kSlowClock, |
| 677 kUseGpu | k30fps | kFastClock)); | 677 kUseGpu | k30fps | kFastClock)); |
| OLD | NEW |