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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 #endif | 831 #endif |
832 | 832 |
833 #if defined(OS_CHROMEOS) | 833 #if defined(OS_CHROMEOS) |
834 // Disables panel fitting (used for mirror mode). | 834 // Disables panel fitting (used for mirror mode). |
835 const char kDisablePanelFitting[] = "disable-panel-fitting"; | 835 const char kDisablePanelFitting[] = "disable-panel-fitting"; |
836 #endif | 836 #endif |
837 | 837 |
838 #if defined(OS_POSIX) | 838 #if defined(OS_POSIX) |
839 // Causes the child processes to cleanly exit via calling exit(). | 839 // Causes the child processes to cleanly exit via calling exit(). |
840 const char kChildCleanExit[] = "child-clean-exit"; | 840 const char kChildCleanExit[] = "child-clean-exit"; |
| 841 const char kWaitForChildrenBeforeExiting[] = |
| 842 "wait-for-children-before-exiting"; |
841 #endif | 843 #endif |
842 | 844 |
843 #if defined(OS_MACOSX) && !defined(OS_IOS) | 845 #if defined(OS_MACOSX) && !defined(OS_IOS) |
844 const char kDisableCarbonInterposing[] = "disable-carbon-interposing"; | 846 const char kDisableCarbonInterposing[] = "disable-carbon-interposing"; |
845 | 847 |
846 // Use core animation to draw the RenderWidgetHostView on Mac. | 848 // Use core animation to draw the RenderWidgetHostView on Mac. |
847 const char kUseCoreAnimation[] = "use-core-animation"; | 849 const char kUseCoreAnimation[] = "use-core-animation"; |
848 #endif | 850 #endif |
849 | 851 |
850 // Disables the use of a 3D software rasterizer. | 852 // Disables the use of a 3D software rasterizer. |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
893 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 895 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
894 | 896 |
895 // Enables/disables accelerated compositing for backgrounds of root layers with | 897 // Enables/disables accelerated compositing for backgrounds of root layers with |
896 // background-attachment: fixed. Requires kForceCompositingMode. | 898 // background-attachment: fixed. Requires kForceCompositingMode. |
897 const char kDisableAcceleratedFixedRootBackground[] = | 899 const char kDisableAcceleratedFixedRootBackground[] = |
898 "disable-accelerated-fixed-root-background"; | 900 "disable-accelerated-fixed-root-background"; |
899 const char kEnableAcceleratedFixedRootBackground[] = | 901 const char kEnableAcceleratedFixedRootBackground[] = |
900 "enable-accelerated-fixed-root-background"; | 902 "enable-accelerated-fixed-root-background"; |
901 | 903 |
902 } // namespace switches | 904 } // namespace switches |
OLD | NEW |