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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 813773002: browser: Expose the GPU rasterization setting everywhere (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cl formatting Created 6 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "chrome/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 kOsAll, 724 kOsAll,
725 #else 725 #else
726 0, 726 0,
727 #endif 727 #endif
728 SINGLE_VALUE_TYPE(switches::kDisableSoftwareRasterizer) 728 SINGLE_VALUE_TYPE(switches::kDisableSoftwareRasterizer)
729 }, 729 },
730 { 730 {
731 "enable-gpu-rasterization", 731 "enable-gpu-rasterization",
732 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_NAME, 732 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_NAME,
733 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_DESCRIPTION, 733 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_DESCRIPTION,
734 kOsAndroid, 734 kOsAll,
735 MULTI_VALUE_TYPE(kEnableGpuRasterizationChoices) 735 MULTI_VALUE_TYPE(kEnableGpuRasterizationChoices)
736 }, 736 },
737 { 737 {
738 "enable-experimental-web-platform-features", 738 "enable-experimental-web-platform-features",
739 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME, 739 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME,
740 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION, 740 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION,
741 kOsAll, 741 kOsAll,
742 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures) 742 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)
743 }, 743 },
744 { 744 {
(...skipping 1889 matching lines...) Expand 10 before | Expand all | Expand 10 after
2634 } 2634 }
2635 2635
2636 const Experiment* GetExperiments(size_t* count) { 2636 const Experiment* GetExperiments(size_t* count) {
2637 *count = num_experiments; 2637 *count = num_experiments;
2638 return experiments; 2638 return experiments;
2639 } 2639 }
2640 2640
2641 } // namespace testing 2641 } // namespace testing
2642 2642
2643 } // namespace about_flags 2643 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698