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

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

Issue 45963003: Move test-only ContextFactory implementations out of production targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert bad ui/base changes Created 7 years, 1 month 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 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 982
983 // Use core animation to draw the RenderWidgetHostView on Mac. 983 // Use core animation to draw the RenderWidgetHostView on Mac.
984 const char kUseCoreAnimation[] = "use-core-animation"; 984 const char kUseCoreAnimation[] = "use-core-animation";
985 #endif 985 #endif
986 986
987 #if defined(OS_POSIX) 987 #if defined(OS_POSIX)
988 // Causes the child processes to cleanly exit via calling exit(). 988 // Causes the child processes to cleanly exit via calling exit().
989 const char kChildCleanExit[] = "child-clean-exit"; 989 const char kChildCleanExit[] = "child-clean-exit";
990 #endif 990 #endif
991 991
992 #if defined(USE_AURA)
993 // Forces usage of the test compositor. Needed to run ui tests on bots.
994 extern const char kTestCompositor[] = "test-compositor";
995 #endif
996
997 // Don't dump stuff here, follow the same order as the header. 992 // Don't dump stuff here, follow the same order as the header.
998 993
999 } // namespace switches 994 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698