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

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

Issue 1403863002: Enable exporting SSLKEYLOGFILE on Android w/ command line arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 extern const char kRestrictIFramePermissions[]; 262 extern const char kRestrictIFramePermissions[];
263 extern const char kSavePageAsMHTML[]; 263 extern const char kSavePageAsMHTML[];
264 extern const char kSbDisableAutoUpdate[]; 264 extern const char kSbDisableAutoUpdate[];
265 extern const char kSbDisableDownloadProtection[]; 265 extern const char kSbDisableDownloadProtection[];
266 extern const char kSbDisableExtensionBlacklist[]; 266 extern const char kSbDisableExtensionBlacklist[];
267 extern const char kServiceProcess[]; 267 extern const char kServiceProcess[];
268 extern const char kSilentDebuggerExtensionAPI[]; 268 extern const char kSilentDebuggerExtensionAPI[];
269 extern const char kSilentLaunch[]; 269 extern const char kSilentLaunch[];
270 extern const char kShowAppList[]; 270 extern const char kShowAppList[];
271 extern const char kShowSavedCopy[]; 271 extern const char kShowSavedCopy[];
272 extern const char kSSLKeyLogFile[];
272 extern const char kEnableShowSavedCopyPrimary[]; 273 extern const char kEnableShowSavedCopyPrimary[];
273 extern const char kEnableShowSavedCopySecondary[]; 274 extern const char kEnableShowSavedCopySecondary[];
274 extern const char kDisableShowSavedCopy[]; 275 extern const char kDisableShowSavedCopy[];
275 extern const char kSimulateElevatedRecovery[]; 276 extern const char kSimulateElevatedRecovery[];
276 extern const char kSimulateUpgrade[]; 277 extern const char kSimulateUpgrade[];
277 extern const char kSimulateCriticalUpdate[]; 278 extern const char kSimulateCriticalUpdate[];
278 extern const char kSimulateOutdated[]; 279 extern const char kSimulateOutdated[];
279 extern const char kSimulateOutdatedNoAU[]; 280 extern const char kSimulateOutdatedNoAU[];
280 extern const char kSpeculativeResourcePrefetching[]; 281 extern const char kSpeculativeResourcePrefetching[];
281 extern const char kSpeculativeResourcePrefetchingDisabled[]; 282 extern const char kSpeculativeResourcePrefetchingDisabled[];
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 #if defined(ENABLE_TASK_MANAGER) 423 #if defined(ENABLE_TASK_MANAGER)
423 bool NewTaskManagerEnabled(); 424 bool NewTaskManagerEnabled();
424 #endif // defined(ENABLE_TASK_MANAGER) 425 #endif // defined(ENABLE_TASK_MANAGER)
425 426
426 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 427 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
427 // alphabetical order, or in one of the ifdefs (also in order in each section). 428 // alphabetical order, or in one of the ifdefs (also in order in each section).
428 429
429 } // namespace switches 430 } // namespace switches
430 431
431 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 432 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698