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

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

Issue 23257005: Move Feature and Manifest to top-level extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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
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"
11 #include "base/test/trace_event_analyzer.h" 11 #include "base/test/trace_event_analyzer.h"
12 #include "base/win/windows_version.h" 12 #include "base/win/windows_version.h"
13 #include "chrome/browser/extensions/extension_apitest.h" 13 #include "chrome/browser/extensions/extension_apitest.h"
14 #include "chrome/browser/extensions/extension_service.h" 14 #include "chrome/browser/extensions/extension_service.h"
15 #include "chrome/browser/extensions/extension_test_message_listener.h" 15 #include "chrome/browser/extensions/extension_test_message_listener.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/fullscreen/fullscreen_controller.h" 18 #include "chrome/browser/ui/fullscreen/fullscreen_controller.h"
19 #include "chrome/common/chrome_switches.h" 19 #include "chrome/common/chrome_switches.h"
20 #include "chrome/common/chrome_version_info.h" 20 #include "chrome/common/chrome_version_info.h"
21 #include "chrome/common/extensions/feature_switch.h" 21 #include "chrome/common/extensions/feature_switch.h"
22 #include "chrome/common/extensions/features/base_feature_provider.h" 22 #include "chrome/common/extensions/features/base_feature_provider.h"
23 #include "chrome/common/extensions/features/complex_feature.h" 23 #include "chrome/common/extensions/features/complex_feature.h"
24 #include "chrome/common/extensions/features/feature.h"
25 #include "chrome/common/extensions/features/simple_feature.h" 24 #include "chrome/common/extensions/features/simple_feature.h"
26 #include "chrome/test/base/test_launcher_utils.h" 25 #include "chrome/test/base/test_launcher_utils.h"
27 #include "chrome/test/base/test_switches.h" 26 #include "chrome/test/base/test_switches.h"
28 #include "chrome/test/base/tracing.h" 27 #include "chrome/test/base/tracing.h"
29 #include "chrome/test/perf/perf_test.h" 28 #include "chrome/test/perf/perf_test.h"
30 #include "content/public/browser/render_process_host.h" 29 #include "content/public/browser/render_process_host.h"
31 #include "content/public/browser/render_view_host.h" 30 #include "content/public/browser/render_view_host.h"
32 #include "content/public/common/content_switches.h" 31 #include "content/public/common/content_switches.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 "ui/compositor/compositor_switches.h" 34 #include "ui/compositor/compositor_switches.h"
35 #include "ui/gl/gl_switches.h" 35 #include "ui/gl/gl_switches.h"
36 36
37 namespace chrome { 37 namespace chrome {
38 38
39 namespace { 39 namespace {
40 40
41 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf"; 41 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf";
42 42
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 kScalingTestBase | kScaleQualityFast, 269 kScalingTestBase | kScaleQualityFast,
270 kScalingTestBase | kScaleQualityGood, 270 kScalingTestBase | kScaleQualityGood,
271 kScalingTestBase | kScaleQualityBest, 271 kScalingTestBase | kScaleQualityBest,
272 kScalingTestBase | kScaleQualityFast | kSmallWindow, 272 kScalingTestBase | kScaleQualityFast | kSmallWindow,
273 kScalingTestBase | kScaleQualityGood | kSmallWindow, 273 kScalingTestBase | kScaleQualityGood | kSmallWindow,
274 kScalingTestBase | kScaleQualityBest | kSmallWindow)); 274 kScalingTestBase | kScaleQualityBest | kSmallWindow));
275 275
276 #endif // USE_AURA 276 #endif // USE_AURA
277 277
278 } // namespace chrome 278 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698