| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 // Defines all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 243 |
| 244 extern const char kEnableApplicationCache[]; | 244 extern const char kEnableApplicationCache[]; |
| 245 | 245 |
| 246 extern const char kSyncServiceURL[]; | 246 extern const char kSyncServiceURL[]; |
| 247 | 247 |
| 248 #if defined(OS_CHROMEOS) | 248 #if defined(OS_CHROMEOS) |
| 249 extern const char kCookiePipe[]; | 249 extern const char kCookiePipe[]; |
| 250 extern const char kEnableGView[]; | 250 extern const char kEnableGView[]; |
| 251 #endif | 251 #endif |
| 252 | 252 |
| 253 extern const char kEnableByteRangeSupport[]; | 253 extern const char kDisableByteRangeSupport[]; |
| 254 | 254 |
| 255 extern const char kExplicitlyAllowedPorts[]; | 255 extern const char kExplicitlyAllowedPorts[]; |
| 256 | 256 |
| 257 extern const char kActivateOnLaunch[]; | 257 extern const char kActivateOnLaunch[]; |
| 258 extern const char kEnableWebSockets[]; | 258 extern const char kEnableWebSockets[]; |
| 259 | 259 |
| 260 extern const char kEnableExperimentalWebGL[]; | 260 extern const char kEnableExperimentalWebGL[]; |
| 261 | 261 |
| 262 extern const char kEnableDesktopNotifications[]; | 262 extern const char kEnableDesktopNotifications[]; |
| 263 | 263 |
| 264 } // namespace switches | 264 } // namespace switches |
| 265 | 265 |
| 266 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 266 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |