| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "base/test/test_timeouts.h" | 12 #include "base/test/test_timeouts.h" |
| 13 #include "base/test/trace_event_analyzer.h" | 13 #include "base/test/trace_event_analyzer.h" |
| 14 #include "chrome/common/chrome_paths.h" | 14 #include "chrome/common/chrome_paths.h" |
| 15 #include "chrome/common/chrome_switches.h" | 15 #include "chrome/common/chrome_switches.h" |
| 16 #include "chrome/test/automation/automation_proxy.h" | 16 #include "chrome/test/automation/automation_proxy.h" |
| 17 #include "chrome/test/automation/tab_proxy.h" | 17 #include "chrome/test/automation/tab_proxy.h" |
| 18 #include "chrome/test/perf/perf_test.h" | 18 #include "chrome/test/perf/perf_test.h" |
| 19 #include "chrome/test/ui/javascript_test_util.h" | 19 #include "chrome/test/ui/javascript_test_util.h" |
| 20 #include "chrome/test/ui/ui_perf_test.h" | 20 #include "chrome/test/ui/ui_perf_test.h" |
| 21 #include "net/base/net_util.h" | 21 #include "net/base/net_util.h" |
| 22 #include "testing/perf/perf_test.h" |
| 22 #include "ui/gl/gl_implementation.h" | 23 #include "ui/gl/gl_implementation.h" |
| 23 #include "ui/gl/gl_switches.h" | 24 #include "ui/gl/gl_switches.h" |
| 24 | 25 |
| 25 #if defined(OS_WIN) | 26 #if defined(OS_WIN) |
| 26 #include "base/win/windows_version.h" | 27 #include "base/win/windows_version.h" |
| 27 #endif | 28 #endif |
| 28 | 29 |
| 29 namespace { | 30 namespace { |
| 30 | 31 |
| 31 enum FrameRateTestFlags { | 32 enum FrameRateTestFlags { |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 kIsGpuCanvasTest | kInternal | kHasRedirect | kUseGpu | kDisableVsync, | 319 kIsGpuCanvasTest | kInternal | kHasRedirect | kUseGpu | kDisableVsync, |
| 319 kIsGpuCanvasTest | kUseReferenceBuild | kInternal | kHasRedirect | kUseGpu, | 320 kIsGpuCanvasTest | kUseReferenceBuild | kInternal | kHasRedirect | kUseGpu, |
| 320 kIsGpuCanvasTest | kUseReferenceBuild | kInternal | kHasRedirect | kUseGpu | | 321 kIsGpuCanvasTest | kUseReferenceBuild | kInternal | kHasRedirect | kUseGpu | |
| 321 kDisableVsync)); | 322 kDisableVsync)); |
| 322 | 323 |
| 323 INTERNAL_FRAME_RATE_TEST_CANVAS_GPU(fireflies) | 324 INTERNAL_FRAME_RATE_TEST_CANVAS_GPU(fireflies) |
| 324 INTERNAL_FRAME_RATE_TEST_CANVAS_GPU(FishIE) | 325 INTERNAL_FRAME_RATE_TEST_CANVAS_GPU(FishIE) |
| 325 INTERNAL_FRAME_RATE_TEST_CANVAS_GPU(speedreading) | 326 INTERNAL_FRAME_RATE_TEST_CANVAS_GPU(speedreading) |
| 326 | 327 |
| 327 } // namespace | 328 } // namespace |
| OLD | NEW |