Chromium Code Reviews| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 166 extern const char kInstallChromeApp[]; | 166 extern const char kInstallChromeApp[]; |
| 167 extern const char kInstallSupervisedUserWhitelists[]; | 167 extern const char kInstallSupervisedUserWhitelists[]; |
| 168 extern const char kInstantProcess[]; | 168 extern const char kInstantProcess[]; |
| 169 extern const char kInterestsURL[]; | 169 extern const char kInterestsURL[]; |
| 170 extern const char kKeepAliveForTest[]; | 170 extern const char kKeepAliveForTest[]; |
| 171 extern const char kKioskMode[]; | 171 extern const char kKioskMode[]; |
| 172 extern const char kKioskModePrinting[]; | 172 extern const char kKioskModePrinting[]; |
| 173 extern const char kLoadExtension[]; | 173 extern const char kLoadExtension[]; |
| 174 extern const char kLoadMediaRouterComponentExtension[]; | 174 extern const char kLoadMediaRouterComponentExtension[]; |
| 175 extern const char kMakeDefaultBrowser[]; | 175 extern const char kMakeDefaultBrowser[]; |
| 176 extern const char kSecurityChip[]; | |
| 177 extern const char kSecurityChipShowNonSecureOnly[]; | 176 extern const char kSecurityChipShowNonSecureOnly[]; |
|
spqchan
2016/12/09 22:46:50
You should also remove line 177 to 181
estark
2016/12/09 22:56:25
Done.
| |
| 178 extern const char kSecurityChipShowAll[]; | 177 extern const char kSecurityChipShowAll[]; |
| 179 extern const char kSecurityChipAnimation[]; | 178 extern const char kSecurityChipAnimation[]; |
| 180 extern const char kSecurityChipAnimationNone[]; | 179 extern const char kSecurityChipAnimationNone[]; |
| 181 extern const char kSecurityChipAnimationNonSecureOnly[]; | 180 extern const char kSecurityChipAnimationNonSecureOnly[]; |
| 182 extern const char kSecurityChipAnimationAll[]; | 181 extern const char kSecurityChipAnimationAll[]; |
| 183 extern const char kMediaCacheSize[]; | 182 extern const char kMediaCacheSize[]; |
| 184 extern const char kMetricsRecordingOnly[]; | 183 extern const char kMetricsRecordingOnly[]; |
| 185 extern const char kMonitoringDestinationID[]; | 184 extern const char kMonitoringDestinationID[]; |
| 186 extern const char kNetLogCaptureMode[]; | 185 extern const char kNetLogCaptureMode[]; |
| 187 extern const char kNoDefaultBrowserCheck[]; | 186 extern const char kNoDefaultBrowserCheck[]; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 389 #if defined(OS_WIN) | 388 #if defined(OS_WIN) |
| 390 bool GDITextPrintingEnabled(); | 389 bool GDITextPrintingEnabled(); |
| 391 #endif | 390 #endif |
| 392 | 391 |
| 393 // 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 |
| 394 // 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). |
| 395 | 394 |
| 396 } // namespace switches | 395 } // namespace switches |
| 397 | 396 |
| 398 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 397 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |