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

Side by Side Diff: content/public/common/content_switches.cc

Issue 203473003: [FastTextAutosizer] Enable FastTextAutosizer on tot/dev by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add tri-state enabled/disabled/default in about:flags Created 6 years, 9 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 (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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests"; 148 const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests";
149 149
150 // Disable the per-domain blocking for 3D APIs after GPU reset. 150 // Disable the per-domain blocking for 3D APIs after GPU reset.
151 // This switch is intended only for tests. 151 // This switch is intended only for tests.
152 extern const char kDisableDomainBlockingFor3DAPIs[] = 152 extern const char kDisableDomainBlockingFor3DAPIs[] =
153 "disable-domain-blocking-for-3d-apis"; 153 "disable-domain-blocking-for-3d-apis";
154 154
155 // Disable experimental WebGL support. 155 // Disable experimental WebGL support.
156 const char kDisableExperimentalWebGL[] = "disable-webgl"; 156 const char kDisableExperimentalWebGL[] = "disable-webgl";
157 157
158 // Disable the fast text autosizing implementation.
159 const char kDisableFastTextAutosizing[] = "disable-fast-text-autosizing";
160
158 // Disable FileSystem API. 161 // Disable FileSystem API.
159 const char kDisableFileSystem[] = "disable-file-system"; 162 const char kDisableFileSystem[] = "disable-file-system";
160 163
161 // Disables sending filters (SkImageFilter objects) between processes over IPC 164 // Disables sending filters (SkImageFilter objects) between processes over IPC
162 const char kDisableFiltersOverIPC[] = "disable-filters-over-ipc"; 165 const char kDisableFiltersOverIPC[] = "disable-filters-over-ipc";
163 166
164 const char kDisableFixedPositionCreatesStackingContext[] 167 const char kDisableFixedPositionCreatesStackingContext[]
165 = "disable-fixed-position-creates-stacking-context"; 168 = "disable-fixed-position-creates-stacking-context";
166 169
167 // Disable 3D inside of flapper. 170 // Disable 3D inside of flapper.
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 #endif 1055 #endif
1053 1056
1054 #if defined(OS_POSIX) 1057 #if defined(OS_POSIX)
1055 // Causes the child processes to cleanly exit via calling exit(). 1058 // Causes the child processes to cleanly exit via calling exit().
1056 const char kChildCleanExit[] = "child-clean-exit"; 1059 const char kChildCleanExit[] = "child-clean-exit";
1057 #endif 1060 #endif
1058 1061
1059 // Don't dump stuff here, follow the same order as the header. 1062 // Don't dump stuff here, follow the same order as the header.
1060 1063
1061 } // namespace switches 1064 } // namespace switches
OLDNEW
« content/child/runtime_features.cc ('K') | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698