Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
michael@0 | 2 | // Use of this source code is governed by a BSD-style license that can be |
michael@0 | 3 | // found in the LICENSE file. |
michael@0 | 4 | |
michael@0 | 5 | // Defines all the command-line switches used by Chrome. |
michael@0 | 6 | |
michael@0 | 7 | #ifndef CHROME_COMMON_CHROME_SWITCHES_H__ |
michael@0 | 8 | #define CHROME_COMMON_CHROME_SWITCHES_H__ |
michael@0 | 9 | |
michael@0 | 10 | #include "base/base_switches.h" |
michael@0 | 11 | |
michael@0 | 12 | namespace switches { |
michael@0 | 13 | |
michael@0 | 14 | extern const wchar_t kDisableHangMonitor[]; |
michael@0 | 15 | extern const wchar_t kDisableMetrics[]; |
michael@0 | 16 | extern const wchar_t kMetricsRecordingOnly[]; |
michael@0 | 17 | extern const wchar_t kBrowserAssertTest[]; |
michael@0 | 18 | extern const wchar_t kRendererAssertTest[]; |
michael@0 | 19 | extern const wchar_t kBrowserCrashTest[]; |
michael@0 | 20 | extern const wchar_t kRendererCrashTest[]; |
michael@0 | 21 | extern const wchar_t kRendererStartupDialog[]; |
michael@0 | 22 | extern const wchar_t kPluginStartupDialog[]; |
michael@0 | 23 | extern const wchar_t kPluginLauncher[]; |
michael@0 | 24 | |
michael@0 | 25 | extern const wchar_t kProcessChannelID[]; |
michael@0 | 26 | extern const wchar_t kTestingChannelID[]; |
michael@0 | 27 | extern const wchar_t kHomePage[]; |
michael@0 | 28 | extern const wchar_t kRendererProcess[]; |
michael@0 | 29 | extern const wchar_t kBrowserSubprocessPath[]; |
michael@0 | 30 | extern const wchar_t kPluginProcess[]; |
michael@0 | 31 | extern const wchar_t kWorkerProcess[]; |
michael@0 | 32 | extern const wchar_t kSingleProcess[]; |
michael@0 | 33 | extern const wchar_t kProcessPerTab[]; |
michael@0 | 34 | extern const wchar_t kProcessPerSite[]; |
michael@0 | 35 | extern const wchar_t kInProcessPlugins[]; |
michael@0 | 36 | extern const wchar_t kNoSandbox[]; |
michael@0 | 37 | extern const wchar_t kSafePlugins[]; |
michael@0 | 38 | extern const wchar_t kTrustedPlugins[]; |
michael@0 | 39 | extern const wchar_t kTestSandbox[]; |
michael@0 | 40 | extern const wchar_t kUserDataDir[]; |
michael@0 | 41 | extern const wchar_t kPluginDataDir[]; |
michael@0 | 42 | extern const wchar_t kDiskCacheDir[]; |
michael@0 | 43 | extern const wchar_t kEnableUserDataDirProfiles[]; |
michael@0 | 44 | extern const wchar_t kParentProfile[]; |
michael@0 | 45 | extern const wchar_t kApp[]; |
michael@0 | 46 | extern const wchar_t kDomAutomationController[]; |
michael@0 | 47 | extern const wchar_t kPluginPath[]; |
michael@0 | 48 | extern const wchar_t kUserAgent[]; |
michael@0 | 49 | extern const wchar_t kJavaScriptFlags[]; |
michael@0 | 50 | extern const wchar_t kCountry[]; |
michael@0 | 51 | extern const wchar_t kLang[]; |
michael@0 | 52 | extern const wchar_t kDebugChildren[]; |
michael@0 | 53 | extern const wchar_t kWaitForDebuggerChildren[]; |
michael@0 | 54 | |
michael@0 | 55 | extern const wchar_t kLogFilterPrefix[]; |
michael@0 | 56 | extern const wchar_t kEnableLogging[]; |
michael@0 | 57 | extern const wchar_t kLoggingLevel[]; |
michael@0 | 58 | extern const wchar_t kLogPluginMessages[]; |
michael@0 | 59 | |
michael@0 | 60 | extern const wchar_t kDumpHistogramsOnExit[]; |
michael@0 | 61 | extern const wchar_t kDisableLogging[]; |
michael@0 | 62 | extern const wchar_t kRemoteShellPort[]; |
michael@0 | 63 | extern const wchar_t kUninstall[]; |
michael@0 | 64 | extern const wchar_t kOmniBoxPopupCount[]; |
michael@0 | 65 | |
michael@0 | 66 | extern const wchar_t kAutomationClientChannelID[]; |
michael@0 | 67 | |
michael@0 | 68 | extern const wchar_t kRestoreLastSession[]; |
michael@0 | 69 | |
michael@0 | 70 | extern const wchar_t kRecordMode[]; |
michael@0 | 71 | extern const wchar_t kPlaybackMode[]; |
michael@0 | 72 | extern const wchar_t kNoEvents[]; |
michael@0 | 73 | extern const wchar_t kNoJsRandomness[]; |
michael@0 | 74 | |
michael@0 | 75 | extern const wchar_t kHideIcons[]; |
michael@0 | 76 | extern const wchar_t kShowIcons[]; |
michael@0 | 77 | extern const wchar_t kMakeDefaultBrowser[]; |
michael@0 | 78 | |
michael@0 | 79 | extern const wchar_t kProxyServer[]; |
michael@0 | 80 | extern const wchar_t kWinHttpProxyResolver[]; |
michael@0 | 81 | extern const wchar_t kDebugPrint[]; |
michael@0 | 82 | |
michael@0 | 83 | extern const wchar_t kDnsLogDetails[]; |
michael@0 | 84 | extern const wchar_t kDnsPrefetchDisable[]; |
michael@0 | 85 | |
michael@0 | 86 | extern const wchar_t kAllowAllActiveX[]; |
michael@0 | 87 | |
michael@0 | 88 | extern const wchar_t kDisableDevTools[]; |
michael@0 | 89 | extern const wchar_t kAlwaysEnableDevTools[]; |
michael@0 | 90 | |
michael@0 | 91 | extern const wchar_t kTabCountToLoadOnSessionRestore[]; |
michael@0 | 92 | |
michael@0 | 93 | extern const wchar_t kMemoryProfiling[]; |
michael@0 | 94 | extern const wchar_t kMemoryModel[]; |
michael@0 | 95 | |
michael@0 | 96 | extern const wchar_t kEnableFileCookies[]; |
michael@0 | 97 | |
michael@0 | 98 | extern const wchar_t kStartMaximized[]; |
michael@0 | 99 | |
michael@0 | 100 | extern const wchar_t kEnableWatchdog[]; |
michael@0 | 101 | |
michael@0 | 102 | extern const wchar_t kFirstRun[]; |
michael@0 | 103 | |
michael@0 | 104 | extern const wchar_t kNoFirstRun[]; |
michael@0 | 105 | |
michael@0 | 106 | extern const wchar_t kMessageLoopHistogrammer[]; |
michael@0 | 107 | |
michael@0 | 108 | extern const wchar_t kImport[]; |
michael@0 | 109 | |
michael@0 | 110 | extern const wchar_t kSilentDumpOnDCHECK[]; |
michael@0 | 111 | |
michael@0 | 112 | extern const wchar_t kDisablePromptOnRepost[]; |
michael@0 | 113 | |
michael@0 | 114 | extern const wchar_t kDisablePopupBlocking[]; |
michael@0 | 115 | extern const wchar_t kDisableJavaScript[]; |
michael@0 | 116 | extern const wchar_t kDisableJava[]; |
michael@0 | 117 | extern const wchar_t kDisablePlugins[]; |
michael@0 | 118 | extern const wchar_t kDisableImages[]; |
michael@0 | 119 | extern const wchar_t kDisableWebSecurity[]; |
michael@0 | 120 | |
michael@0 | 121 | extern const wchar_t kUseLowFragHeapCrt[]; |
michael@0 | 122 | |
michael@0 | 123 | #ifndef NDEBUG |
michael@0 | 124 | extern const wchar_t kGearsPluginPathOverride[]; |
michael@0 | 125 | #endif |
michael@0 | 126 | |
michael@0 | 127 | extern const wchar_t kEnableFastback[]; |
michael@0 | 128 | |
michael@0 | 129 | extern const wchar_t kJavaScriptDebuggerPath[]; |
michael@0 | 130 | |
michael@0 | 131 | extern const wchar_t kDisableP13n[]; |
michael@0 | 132 | |
michael@0 | 133 | extern const wchar_t kSdchFilter[]; |
michael@0 | 134 | |
michael@0 | 135 | extern const wchar_t kEnableUserScripts[]; |
michael@0 | 136 | extern const wchar_t kEnableExtensions[]; |
michael@0 | 137 | extern const wchar_t kInstallExtension[]; |
michael@0 | 138 | extern const wchar_t kLoadExtension[]; |
michael@0 | 139 | extern const wchar_t kLoadPlugin[]; |
michael@0 | 140 | extern const wchar_t kUserScriptsDir[]; |
michael@0 | 141 | |
michael@0 | 142 | extern const wchar_t kIncognito[]; |
michael@0 | 143 | |
michael@0 | 144 | extern const wchar_t kEnableRendererAccessibility[]; |
michael@0 | 145 | |
michael@0 | 146 | extern const wchar_t kTestName[]; |
michael@0 | 147 | |
michael@0 | 148 | extern const wchar_t kRendererCmdPrefix[]; |
michael@0 | 149 | |
michael@0 | 150 | extern const wchar_t kNewFtp[]; |
michael@0 | 151 | |
michael@0 | 152 | extern const wchar_t kIPCUseFIFO[]; |
michael@0 | 153 | |
michael@0 | 154 | extern const wchar_t kEnableOutOfProcessDevTools[]; |
michael@0 | 155 | |
michael@0 | 156 | extern const wchar_t kEnableWebWorkers[]; |
michael@0 | 157 | extern const wchar_t kWebWorkerProcessPerCore[]; |
michael@0 | 158 | extern const wchar_t kWebWorkerShareProcesses[]; |
michael@0 | 159 | |
michael@0 | 160 | extern const wchar_t kViewsGtk[]; |
michael@0 | 161 | |
michael@0 | 162 | extern const wchar_t kBookmarkMenu[]; |
michael@0 | 163 | extern const wchar_t kEnableStatsTable[]; |
michael@0 | 164 | |
michael@0 | 165 | extern const wchar_t kEnableOmnibox2[]; |
michael@0 | 166 | |
michael@0 | 167 | extern const wchar_t kDisableAudio[]; |
michael@0 | 168 | extern const wchar_t kSimpleDataSource[]; |
michael@0 | 169 | |
michael@0 | 170 | } // namespace switches |
michael@0 | 171 | |
michael@0 | 172 | #endif // CHROME_COMMON_CHROME_SWITCHES_H__ |