| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |