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

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: 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 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 978
979 // Use core animation to draw the RenderWidgetHostView on Mac. 979 // Use core animation to draw the RenderWidgetHostView on Mac.
980 const char kUseCoreAnimation[] = "use-core-animation"; 980 const char kUseCoreAnimation[] = "use-core-animation";
981 #endif 981 #endif
982 982
983 #if defined(OS_POSIX) 983 #if defined(OS_POSIX)
984 // Causes the child processes to cleanly exit via calling exit(). 984 // Causes the child processes to cleanly exit via calling exit().
985 const char kChildCleanExit[] = "child-clean-exit"; 985 const char kChildCleanExit[] = "child-clean-exit";
986 #endif 986 #endif
987 987
988 #if defined(USE_AURA)
989 // Forces usage of the test compositor. Needed to run ui tests on bots.
990 extern const char kTestCompositor[] = "test-compositor";
991 #endif
992
993 // Don't dump stuff here, follow the same order as the header. 988 // Don't dump stuff here, follow the same order as the header.
994 989
995 } // namespace switches 990 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698