| 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 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 extern const char kDisableSyncFavicons[]; | 139 extern const char kDisableSyncFavicons[]; |
| 140 extern const char kDisableSyncPasswords[]; | 140 extern const char kDisableSyncPasswords[]; |
| 141 extern const char kDisableSyncPreferences[]; | 141 extern const char kDisableSyncPreferences[]; |
| 142 extern const char kDisableSyncPriorityPreferences[]; | 142 extern const char kDisableSyncPriorityPreferences[]; |
| 143 extern const char kDisableSyncSearchEngines[]; | 143 extern const char kDisableSyncSearchEngines[]; |
| 144 extern const char kDisableSyncSessionsV2[]; | 144 extern const char kDisableSyncSessionsV2[]; |
| 145 extern const char kDisableSyncSyncedNotifications[]; | 145 extern const char kDisableSyncSyncedNotifications[]; |
| 146 extern const char kDisableSyncTabs[]; | 146 extern const char kDisableSyncTabs[]; |
| 147 extern const char kDisableSyncThemes[]; | 147 extern const char kDisableSyncThemes[]; |
| 148 extern const char kDisableSyncTypedUrls[]; | 148 extern const char kDisableSyncTypedUrls[]; |
| 149 extern const char kDisableTranslate[]; | |
| 150 extern const char kDisableTLSChannelID[]; | 149 extern const char kDisableTLSChannelID[]; |
| 151 extern const char kDisableUserMediaSecurity[]; | 150 extern const char kDisableUserMediaSecurity[]; |
| 152 extern const char kDisableWebResources[]; | 151 extern const char kDisableWebResources[]; |
| 153 extern const char kDisableZeroBrowsersOpenForTests[]; | 152 extern const char kDisableZeroBrowsersOpenForTests[]; |
| 154 extern const char kDiskCacheDir[]; | 153 extern const char kDiskCacheDir[]; |
| 155 extern const char kDiskCacheSize[]; | 154 extern const char kDiskCacheSize[]; |
| 156 extern const char kDnsLogDetails[]; | 155 extern const char kDnsLogDetails[]; |
| 157 extern const char kDnsPrefetchDisable[]; | 156 extern const char kDnsPrefetchDisable[]; |
| 158 extern const char kDumpBrowserHistograms[]; | 157 extern const char kDumpBrowserHistograms[]; |
| 159 extern const char kEmbedFlashFullscreen[]; | 158 extern const char kEmbedFlashFullscreen[]; |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 #else | 475 #else |
| 477 extern const char kEnablePrintPreview[]; | 476 extern const char kEnablePrintPreview[]; |
| 478 #endif | 477 #endif |
| 479 | 478 |
| 480 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 479 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 481 // alphabetical order, or in one of the ifdefs (also in order in each section). | 480 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 482 | 481 |
| 483 } // namespace switches | 482 } // namespace switches |
| 484 | 483 |
| 485 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 484 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |