Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: chrome/common/chrome_switches.h

Issue 209393004: Only enable speech dispatcher on Linux with an explicit switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indentation and comments Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/startup/bad_flags_prompt.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 398
399 #if defined(USE_ASH) 399 #if defined(USE_ASH)
400 extern const char kOpenAsh[]; 400 extern const char kOpenAsh[];
401 #endif 401 #endif
402 402
403 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 403 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
404 extern const char kPasswordStore[]; 404 extern const char kPasswordStore[];
405 #endif 405 #endif
406 406
407 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 407 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
408 extern const char kEnableSpeechDispatcher[];
408 extern const char kMigrateDataDirForSxS[]; 409 extern const char kMigrateDataDirForSxS[];
409 #endif 410 #endif
410 411
411 #if defined(OS_MACOSX) 412 #if defined(OS_MACOSX)
412 extern const char kDisableAppShims[]; 413 extern const char kDisableAppShims[];
413 extern const char kDisableSystemFullscreenForTesting[]; 414 extern const char kDisableSystemFullscreenForTesting[];
414 extern const char kEnableSimplifiedFullscreen[]; 415 extern const char kEnableSimplifiedFullscreen[];
415 extern const char kRelauncherProcess[]; 416 extern const char kRelauncherProcess[];
416 #endif 417 #endif
417 418
(...skipping 23 matching lines...) Expand all
441 #else 442 #else
442 extern const char kEnablePrintPreview[]; 443 extern const char kEnablePrintPreview[];
443 #endif 444 #endif
444 445
445 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 446 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
446 // alphabetical order, or in one of the ifdefs (also in order in each section). 447 // alphabetical order, or in one of the ifdefs (also in order in each section).
447 448
448 } // namespace switches 449 } // namespace switches
449 450
450 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 451 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/startup/bad_flags_prompt.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698