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

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

Issue 1174183003: [SP] Enable Slimming Paint by default in Chromium and Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge changes. Created 5 years, 6 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
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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 {"enable-gpu-rasterization", 743 {"enable-gpu-rasterization",
744 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_NAME, 744 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_NAME,
745 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_DESCRIPTION, 745 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_DESCRIPTION,
746 kOsAll, 746 kOsAll,
747 MULTI_VALUE_TYPE(kEnableGpuRasterizationChoices)}, 747 MULTI_VALUE_TYPE(kEnableGpuRasterizationChoices)},
748 {"gpu-rasterization-msaa-sample-count", 748 {"gpu-rasterization-msaa-sample-count",
749 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_NAME, 749 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_NAME,
750 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_DESCRIPTION, 750 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_DESCRIPTION,
751 kOsAll, 751 kOsAll,
752 MULTI_VALUE_TYPE(kGpuRasterizationMSAASampleCountChoices)}, 752 MULTI_VALUE_TYPE(kGpuRasterizationMSAASampleCountChoices)},
753 {"disable-slimming-paint",
754 IDS_FLAGS_DISABLE_SLIMMING_PAINT_NAME,
755 IDS_FLAGS_DISABLE_SLIMMING_PAINT_DESCRIPTION,
756 kOsAll,
757 SINGLE_VALUE_TYPE(switches::kDisableSlimmingPaint)},
753 {"enable-slimming-paint", 758 {"enable-slimming-paint",
754 IDS_FLAGS_ENABLE_SLIMMING_PAINT_NAME, 759 IDS_FLAGS_ENABLE_SLIMMING_PAINT_NAME,
755 IDS_FLAGS_ENABLE_SLIMMING_PAINT_DESCRIPTION, 760 IDS_FLAGS_ENABLE_SLIMMING_PAINT_DESCRIPTION,
756 kOsAll, 761 kOsAll,
757 SINGLE_VALUE_TYPE(switches::kEnableSlimmingPaint)}, 762 SINGLE_VALUE_TYPE(switches::kEnableSlimmingPaint)},
758 {"enable-experimental-web-platform-features", 763 {"enable-experimental-web-platform-features",
759 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME, 764 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME,
760 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION, 765 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION,
761 kOsAll, 766 kOsAll,
762 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)}, 767 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)},
(...skipping 1831 matching lines...) Expand 10 before | Expand all | Expand 10 after
2594 } 2599 }
2595 2600
2596 const Experiment* GetExperiments(size_t* count) { 2601 const Experiment* GetExperiments(size_t* count) {
2597 *count = num_experiments; 2602 *count = num_experiments;
2598 return experiments; 2603 return experiments;
2599 } 2604 }
2600 2605
2601 } // namespace testing 2606 } // namespace testing
2602 2607
2603 } // namespace about_flags 2608 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/chrome_restart_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698