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

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

Issue 1169193003: [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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 {"enable-gpu-rasterization", 745 {"enable-gpu-rasterization",
746 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_NAME, 746 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_NAME,
747 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_DESCRIPTION, 747 IDS_FLAGS_ENABLE_GPU_RASTERIZATION_DESCRIPTION,
748 kOsAll, 748 kOsAll,
749 MULTI_VALUE_TYPE(kEnableGpuRasterizationChoices)}, 749 MULTI_VALUE_TYPE(kEnableGpuRasterizationChoices)},
750 {"gpu-rasterization-msaa-sample-count", 750 {"gpu-rasterization-msaa-sample-count",
751 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_NAME, 751 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_NAME,
752 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_DESCRIPTION, 752 IDS_FLAGS_GPU_RASTERIZATION_MSAA_SAMPLE_COUNT_DESCRIPTION,
753 kOsAll, 753 kOsAll,
754 MULTI_VALUE_TYPE(kGpuRasterizationMSAASampleCountChoices)}, 754 MULTI_VALUE_TYPE(kGpuRasterizationMSAASampleCountChoices)},
755 {"disable-slimming-paint",
756 IDS_FLAGS_DISABLE_SLIMMING_PAINT_NAME,
757 IDS_FLAGS_DISABLE_SLIMMING_PAINT_DESCRIPTION,
758 kOsAll,
759 SINGLE_VALUE_TYPE(switches::kDisableSlimmingPaint)},
755 {"enable-slimming-paint", 760 {"enable-slimming-paint",
756 IDS_FLAGS_ENABLE_SLIMMING_PAINT_NAME, 761 IDS_FLAGS_ENABLE_SLIMMING_PAINT_NAME,
757 IDS_FLAGS_ENABLE_SLIMMING_PAINT_DESCRIPTION, 762 IDS_FLAGS_ENABLE_SLIMMING_PAINT_DESCRIPTION,
758 kOsAll, 763 kOsAll,
759 SINGLE_VALUE_TYPE(switches::kEnableSlimmingPaint)}, 764 SINGLE_VALUE_TYPE(switches::kEnableSlimmingPaint)},
760 {"enable-experimental-web-platform-features", 765 {"enable-experimental-web-platform-features",
761 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME, 766 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_NAME,
762 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION, 767 IDS_FLAGS_EXPERIMENTAL_WEB_PLATFORM_FEATURES_DESCRIPTION,
763 kOsAll, 768 kOsAll,
764 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)}, 769 SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)},
(...skipping 1827 matching lines...) Expand 10 before | Expand all | Expand 10 after
2592 } 2597 }
2593 2598
2594 const Experiment* GetExperiments(size_t* count) { 2599 const Experiment* GetExperiments(size_t* count) {
2595 *count = num_experiments; 2600 *count = num_experiments;
2596 return experiments; 2601 return experiments;
2597 } 2602 }
2598 2603
2599 } // namespace testing 2604 } // namespace testing
2600 2605
2601 } // namespace about_flags 2606 } // 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