Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: chrome/browser/extensions/api/tab_capture/tab_capture_performancetest.cc

Issue 23509002: Factor out a perf test result printer method. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mac compile Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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) 7 #if defined(OS_MACOSX)
8 #include "base/mac/mac_util.h" 8 #include "base/mac/mac_util.h"
9 #endif 9 #endif
10 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
(...skipping 13 matching lines...) Expand all
24 #include "chrome/common/extensions/features/simple_feature.h" 24 #include "chrome/common/extensions/features/simple_feature.h"
25 #include "chrome/test/base/test_launcher_utils.h" 25 #include "chrome/test/base/test_launcher_utils.h"
26 #include "chrome/test/base/test_switches.h" 26 #include "chrome/test/base/test_switches.h"
27 #include "chrome/test/base/tracing.h" 27 #include "chrome/test/base/tracing.h"
28 #include "chrome/test/perf/perf_test.h" 28 #include "chrome/test/perf/perf_test.h"
29 #include "content/public/browser/render_process_host.h" 29 #include "content/public/browser/render_process_host.h"
30 #include "content/public/browser/render_view_host.h" 30 #include "content/public/browser/render_view_host.h"
31 #include "content/public/common/content_switches.h" 31 #include "content/public/common/content_switches.h"
32 #include "extensions/common/features/feature.h" 32 #include "extensions/common/features/feature.h"
33 #include "testing/gtest/include/gtest/gtest.h" 33 #include "testing/gtest/include/gtest/gtest.h"
34 #include "testing/perf/perf_test.h"
34 #include "ui/compositor/compositor_switches.h" 35 #include "ui/compositor/compositor_switches.h"
35 #include "ui/gl/gl_switches.h" 36 #include "ui/gl/gl_switches.h"
36 37
37 namespace chrome { 38 namespace chrome {
38 39
39 namespace { 40 namespace {
40 41
41 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf"; 42 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf";
42 43
43 enum TestFlags { 44 enum TestFlags {
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 kScalingTestBase | kScaleQualityFast, 271 kScalingTestBase | kScaleQualityFast,
271 kScalingTestBase | kScaleQualityGood, 272 kScalingTestBase | kScaleQualityGood,
272 kScalingTestBase | kScaleQualityBest, 273 kScalingTestBase | kScaleQualityBest,
273 kScalingTestBase | kScaleQualityFast | kSmallWindow, 274 kScalingTestBase | kScaleQualityFast | kSmallWindow,
274 kScalingTestBase | kScaleQualityGood | kSmallWindow, 275 kScalingTestBase | kScaleQualityGood | kSmallWindow,
275 kScalingTestBase | kScaleQualityBest | kSmallWindow)); 276 kScalingTestBase | kScaleQualityBest | kSmallWindow));
276 277
277 #endif // USE_AURA 278 #endif // USE_AURA
278 279
279 } // namespace chrome 280 } // namespace chrome
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698