| 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 #if defined(OS_MACOSX) | |
| 11 #include "base/mac/mac_util.h" | |
| 12 #endif | |
| 13 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 14 #include "base/test/trace_event_analyzer.h" | 11 #include "base/test/trace_event_analyzer.h" |
| 15 #include "base/time/default_tick_clock.h" | 12 #include "base/time/default_tick_clock.h" |
| 16 #include "base/win/windows_version.h" | 13 #include "base/win/windows_version.h" |
| 17 #include "chrome/browser/extensions/extension_apitest.h" | 14 #include "chrome/browser/extensions/extension_apitest.h" |
| 18 #include "chrome/browser/extensions/extension_service.h" | 15 #include "chrome/browser/extensions/extension_service.h" |
| 19 #include "chrome/browser/extensions/tab_helper.h" | 16 #include "chrome/browser/extensions/tab_helper.h" |
| 20 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
| 21 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" | 18 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" |
| 22 #include "chrome/common/chrome_switches.h" | 19 #include "chrome/common/chrome_switches.h" |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 CastV2PerformanceTest, | 666 CastV2PerformanceTest, |
| 670 testing::Values( | 667 testing::Values( |
| 671 kUseGpu | k24fps, | 668 kUseGpu | k24fps, |
| 672 kUseGpu | k30fps, | 669 kUseGpu | k30fps, |
| 673 kUseGpu | k60fps, | 670 kUseGpu | k60fps, |
| 674 kUseGpu | k24fps | kDisableVsync, | 671 kUseGpu | k24fps | kDisableVsync, |
| 675 kUseGpu | k30fps | kProxyWifi, | 672 kUseGpu | k30fps | kProxyWifi, |
| 676 kUseGpu | k30fps | kProxyBad, | 673 kUseGpu | k30fps | kProxyBad, |
| 677 kUseGpu | k30fps | kSlowClock, | 674 kUseGpu | k30fps | kSlowClock, |
| 678 kUseGpu | k30fps | kFastClock)); | 675 kUseGpu | k30fps | kFastClock)); |
| OLD | NEW |