OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1070 // This switch is used during automated testing. | 1070 // This switch is used during automated testing. |
1071 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; | 1071 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; |
1072 | 1072 |
1073 #if !defined(OS_MACOSX) | 1073 #if !defined(OS_MACOSX) |
1074 // Specifies which password store to use (detect, default, gnome, kwallet). | 1074 // Specifies which password store to use (detect, default, gnome, kwallet). |
1075 const char kPasswordStore[] = "password-store"; | 1075 const char kPasswordStore[] = "password-store"; |
1076 #endif | 1076 #endif |
1077 #endif | 1077 #endif |
1078 | 1078 |
1079 #if defined(OS_MACOSX) | 1079 #if defined(OS_MACOSX) |
| 1080 // Temporary flag to prevent Flash from negotiating the Core Animation drawing |
| 1081 // model. This will be removed once the last issues have been resolved. |
| 1082 const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation"; |
| 1083 |
| 1084 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
| 1085 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
| 1086 |
1080 // Cause the OS X sandbox write to syslog every time an access to a resource | 1087 // Cause the OS X sandbox write to syslog every time an access to a resource |
1081 // is denied by the sandbox. | 1088 // is denied by the sandbox. |
1082 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 1089 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
1083 | |
1084 // Temporary flag to prevent Flash from negotiating the Core Animation drawing | |
1085 // model. This will be removed once the last issues have been resolved. | |
1086 const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation"; | |
1087 #else | 1090 #else |
1088 // Enable Kiosk mode. | 1091 // Enable Kiosk mode. |
1089 const char kKioskMode[] = "kiosk"; | 1092 const char kKioskMode[] = "kiosk"; |
1090 #endif | 1093 #endif |
1091 | 1094 |
1092 #ifndef NDEBUG | 1095 #ifndef NDEBUG |
1093 // Debug only switch to specify which gears plugin dll to load. | 1096 // Debug only switch to specify which gears plugin dll to load. |
1094 const char kGearsPluginPathOverride[] = "gears-plugin-path"; | 1097 const char kGearsPluginPathOverride[] = "gears-plugin-path"; |
1095 | 1098 |
1096 // Makes sure any sync login attempt will fail with an error. (Only | 1099 // Makes sure any sync login attempt will fail with an error. (Only |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 | 1133 |
1131 // ----------------------------------------------------------------------------- | 1134 // ----------------------------------------------------------------------------- |
1132 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1135 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1133 // | 1136 // |
1134 // You were going to just dump your switches here, weren't you? Instead, | 1137 // You were going to just dump your switches here, weren't you? Instead, |
1135 // please put them in alphabetical order above, or in order inside the | 1138 // please put them in alphabetical order above, or in order inside the |
1136 // appropriate ifdef at the bottom. The order should match the header. | 1139 // appropriate ifdef at the bottom. The order should match the header. |
1137 // ----------------------------------------------------------------------------- | 1140 // ----------------------------------------------------------------------------- |
1138 | 1141 |
1139 } // namespace switches | 1142 } // namespace switches |
OLD | NEW |