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

Unified Diff: chrome/browser/about_flags.cc

Issue 101043009: Remove obsolete about:flags entries on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index a263b88429bed9566f4ddda1169a1c0d7fb44857..5e02dfc4f48e34427732528beb9ad2ff41b8ea89 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -155,14 +155,6 @@ const Experiment::Choice kEnableAcceleratedFixedRootBackgroundChoices[] = {
switches::kDisableAcceleratedFixedRootBackground, ""},
};
-const Experiment::Choice kGDIPresentChoices[] = {
- { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" },
- { IDS_FLAGS_PRESENT_WITH_GDI_FIRST_SHOW,
- switches::kDoFirstShowPresentWithGDI, ""},
- { IDS_FLAGS_PRESENT_WITH_GDI_ALL_SHOW,
- switches::kDoAllShowPresentWithGDI, ""}
-};
-
const Experiment::Choice kTouchEventsChoices[] = {
{ IDS_GENERIC_EXPERIMENT_CHOICE_AUTOMATIC, "", "" },
{ IDS_GENERIC_EXPERIMENT_CHOICE_ENABLED,
@@ -424,7 +416,7 @@ const Experiment kExperiments[] = {
"force-compositing-mode-2",
IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME,
IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION,
- kOsMac | kOsWin | kOsLinux,
+ kOsMac | kOsLinux,
ENABLE_DISABLE_VALUE_TYPE(switches::kForceCompositingMode,
switches::kDisableForceCompositingMode)
},
@@ -432,7 +424,7 @@ const Experiment kExperiments[] = {
"threaded-compositing-mode",
IDS_FLAGS_THREADED_COMPOSITING_MODE_NAME,
IDS_FLAGS_THREADED_COMPOSITING_MODE_DESCRIPTION,
- kOsMac | kOsWin | kOsLinux,
+ kOsMac | kOsLinux,
ENABLE_DISABLE_VALUE_TYPE(switches::kEnableThreadedCompositing,
switches::kDisableThreadedCompositing)
},
@@ -462,13 +454,6 @@ const Experiment kExperiments[] = {
switches::kEnableLayerSquashing,
switches::kDisableLayerSquashing)
},
- {
- "present-with-GDI",
- IDS_FLAGS_PRESENT_WITH_GDI_NAME,
- IDS_FLAGS_PRESENT_WITH_GDI_DESCRIPTION,
- kOsWin,
- MULTI_VALUE_TYPE(kGDIPresentChoices)
- },
#if defined(OS_WIN)
{
"enable-direct-write",
@@ -493,13 +478,6 @@ const Experiment kExperiments[] = {
SINGLE_VALUE_TYPE(switches::kDisableAccelerated2dCanvas)
},
{
- "disable-threaded-animation",
- IDS_FLAGS_DISABLE_THREADED_ANIMATION_NAME,
- IDS_FLAGS_DISABLE_THREADED_ANIMATION_DESCRIPTION,
- kOsAll,
- SINGLE_VALUE_TYPE(cc::switches::kDisableThreadedAnimation)
- },
- {
"composited-layer-borders",
IDS_FLAGS_COMPOSITED_LAYER_BORDERS,
IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION,
@@ -763,7 +741,7 @@ const Experiment kExperiments[] = {
IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_DESCRIPTION,
// Can't expose the switch unless the code is compiled in.
// On by default for the Mac (different implementation in WebKit).
- kOsWin | kOsLinux,
+ kOsLinux,
SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling)
},
{
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698