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 // Defines the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
7 | 7 |
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
10 | 10 |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 extern const char kV8PacMojoInProcess[]; | 259 extern const char kV8PacMojoInProcess[]; |
260 extern const char kV8PacMojoOutOfProcess[]; | 260 extern const char kV8PacMojoOutOfProcess[]; |
261 extern const char kValidateCrx[]; | 261 extern const char kValidateCrx[]; |
262 extern const char kVersion[]; | 262 extern const char kVersion[]; |
263 extern const char kWindowPosition[]; | 263 extern const char kWindowPosition[]; |
264 extern const char kWindowSize[]; | 264 extern const char kWindowSize[]; |
265 extern const char kWindowWorkspace[]; | 265 extern const char kWindowWorkspace[]; |
266 extern const char kWinHttpProxyResolver[]; | 266 extern const char kWinHttpProxyResolver[]; |
267 extern const char kWinJumplistAction[]; | 267 extern const char kWinJumplistAction[]; |
268 | 268 |
269 #if defined(ENABLE_SPELLCHECK) | |
270 #if defined(OS_ANDROID) | |
271 extern const char kEnableAndroidSpellChecker[]; | |
272 #endif // defined(OS_ANDROID) | |
273 extern const char kEnableSpellingFeedbackFieldTrial[]; | |
274 extern const char kSpellingServiceFeedbackIntervalSeconds[]; | |
275 extern const char kSpellingServiceFeedbackUrl[]; | |
276 #endif // defined(ENABLE_SPELLCHECK) | |
277 | |
278 #if defined(GOOGLE_CHROME_BUILD) | 269 #if defined(GOOGLE_CHROME_BUILD) |
279 extern const char kEnableGoogleBrandedContextMenu[]; | 270 extern const char kEnableGoogleBrandedContextMenu[]; |
280 #endif // defined(GOOGLE_CHROME_BUILD) | 271 #endif // defined(GOOGLE_CHROME_BUILD) |
281 | 272 |
282 #if !defined(GOOGLE_CHROME_BUILD) | 273 #if !defined(GOOGLE_CHROME_BUILD) |
283 extern const char kLocalNtpReload[]; | 274 extern const char kLocalNtpReload[]; |
284 #endif | 275 #endif |
285 | 276 |
286 #if defined(OS_ANDROID) | 277 #if defined(OS_ANDROID) |
287 extern const char kAuthAndroidNegotiateAccountType[]; | 278 extern const char kAuthAndroidNegotiateAccountType[]; |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 #if defined(OS_CHROMEOS) | 388 #if defined(OS_CHROMEOS) |
398 bool PowerOverlayEnabled(); | 389 bool PowerOverlayEnabled(); |
399 #endif | 390 #endif |
400 | 391 |
401 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 392 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
402 // alphabetical order, or in one of the ifdefs (also in order in each section). | 393 // alphabetical order, or in one of the ifdefs (also in order in each section). |
403 | 394 |
404 } // namespace switches | 395 } // namespace switches |
405 | 396 |
406 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 397 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |