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 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
920 #if defined(OS_POSIX) | 920 #if defined(OS_POSIX) |
921 // Causes the child processes to cleanly exit via calling exit(). | 921 // Causes the child processes to cleanly exit via calling exit(). |
922 const char kChildCleanExit[] = "child-clean-exit"; | 922 const char kChildCleanExit[] = "child-clean-exit"; |
923 #endif | 923 #endif |
924 | 924 |
925 #if defined(USE_AURA) | 925 #if defined(USE_AURA) |
926 // Forces usage of the test compositor. Needed to run ui tests on bots. | 926 // Forces usage of the test compositor. Needed to run ui tests on bots. |
927 extern const char kTestCompositor[] = "test-compositor"; | 927 extern const char kTestCompositor[] = "test-compositor"; |
928 #endif | 928 #endif |
929 | 929 |
930 // Don't dump stuff here, follow the same order as the header. | 930 // Don't dump stuff here, follow the same order as the header. |
gab
2013/08/22 02:37:19
See this line.
New switches should be added in al
| |
931 | 931 |
932 // Allows filters (SkImageFilter objects) to be sent between processes over IPC | |
933 const char kAllowFiltersOverIPC[] = "allow-filters-over-ipc"; | |
934 | |
932 } // namespace switches | 935 } // namespace switches |
OLD | NEW |