Componentize kShortcutsDatabaseName into //components/omnibox.
[chromium-blink-merge.git] / chrome / common / chrome_constants.cc
blobe41e836ec4e26efc1970c07095d23981dd3cd46f
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
3 // found in the LICENSE file.
5 #include "chrome/common/chrome_constants.h"
7 #include "base/files/file_path.h"
9 #define FPL FILE_PATH_LITERAL
11 #if defined(OS_MACOSX)
12 #define CHROMIUM_PRODUCT_STRING "Chromium"
13 #if defined(GOOGLE_CHROME_BUILD)
14 #define PRODUCT_STRING "Google Chrome"
15 #elif defined(CHROMIUM_BUILD)
16 #define PRODUCT_STRING "Chromium"
17 #else
18 #error Unknown branding
19 #endif
20 #endif // defined(OS_MACOSX)
22 namespace chrome {
24 #if defined(OS_WIN)
25 const char kChromeVersionEnvVar[] = "CHROME_VERSION";
26 #endif
28 // The following should not be used for UI strings; they are meant
29 // for system strings only. UI changes should be made in the GRD.
31 // There are four constants used to locate the executable name and path:
33 // kBrowserProcessExecutableName
34 // kHelperProcessExecutableName
35 // kBrowserProcessExecutablePath
36 // kHelperProcessExecutablePath
38 // In one condition, our tests will be built using the Chrome branding
39 // though we want to actually execute a Chromium branded application.
40 // This happens for the reference build on Mac. To support that case,
41 // we also include a Chromium version of each of the four constants and
42 // in the UITest class we support switching to that version when told to
43 // do so.
45 #if defined(OS_WIN)
46 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] =
47 FPL("chrome.exe");
48 const base::FilePath::CharType kBrowserProcessExecutableName[] =
49 FPL("chrome.exe");
50 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] =
51 FPL("chrome.exe");
52 const base::FilePath::CharType kHelperProcessExecutableName[] =
53 FPL("chrome.exe");
54 #elif defined(OS_MACOSX)
55 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] =
56 FPL(CHROMIUM_PRODUCT_STRING);
57 const base::FilePath::CharType kBrowserProcessExecutableName[] =
58 FPL(PRODUCT_STRING);
59 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] =
60 FPL(CHROMIUM_PRODUCT_STRING " Helper");
61 const base::FilePath::CharType kHelperProcessExecutableName[] =
62 FPL(PRODUCT_STRING " Helper");
63 #elif defined(OS_ANDROID)
64 // NOTE: Keep it synced with the process names defined in AndroidManifest.xml.
65 const base::FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome");
66 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] =
67 FPL("");
68 const base::FilePath::CharType kHelperProcessExecutableName[] =
69 FPL("sandboxed_process");
70 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] = FPL("");
71 #elif defined(OS_POSIX)
72 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] =
73 FPL("chrome");
74 const base::FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome");
75 // Helper processes end up with a name of "exe" due to execing via
76 // /proc/self/exe. See bug 22703.
77 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] =
78 FPL("exe");
79 const base::FilePath::CharType kHelperProcessExecutableName[] = FPL("exe");
80 #endif // OS_*
82 #if defined(OS_WIN)
83 const base::FilePath::CharType kBrowserProcessExecutablePathChromium[] =
84 FPL("chrome.exe");
85 const base::FilePath::CharType kBrowserProcessExecutablePath[] =
86 FPL("chrome.exe");
87 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] =
88 FPL("chrome.exe");
89 const base::FilePath::CharType kHelperProcessExecutablePath[] =
90 FPL("chrome.exe");
91 #elif defined(OS_MACOSX)
92 const base::FilePath::CharType kBrowserProcessExecutablePathChromium[] =
93 FPL(CHROMIUM_PRODUCT_STRING ".app/Contents/MacOS/" CHROMIUM_PRODUCT_STRING);
94 const base::FilePath::CharType kBrowserProcessExecutablePath[] =
95 FPL(PRODUCT_STRING ".app/Contents/MacOS/" PRODUCT_STRING);
96 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] =
97 FPL(CHROMIUM_PRODUCT_STRING " Helper.app/Contents/MacOS/"
98 CHROMIUM_PRODUCT_STRING " Helper");
99 const base::FilePath::CharType kHelperProcessExecutablePath[] =
100 FPL(PRODUCT_STRING " Helper.app/Contents/MacOS/" PRODUCT_STRING " Helper");
101 #elif defined(OS_ANDROID)
102 const base::FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome");
103 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome");
104 const base::FilePath::CharType kBrowserProcessExecutablePathChromium[] =
105 FPL("chrome");
106 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] =
107 FPL("chrome");
108 #elif defined(OS_POSIX)
109 const base::FilePath::CharType kBrowserProcessExecutablePathChromium[] =
110 FPL("chrome");
111 const base::FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome");
112 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] =
113 FPL("chrome");
114 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome");
115 #endif // OS_*
117 #if defined(OS_MACOSX)
118 const base::FilePath::CharType kFrameworkName[] =
119 FPL(PRODUCT_STRING " Framework.framework");
121 const char* const kHelperFlavorSuffixes[] = {
122 FPL("EH"), // Executable heap
123 FPL("NP"), // No PIE
124 NULL
126 #endif // OS_MACOSX
128 #if defined(OS_WIN)
129 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll");
130 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll");
131 const base::FilePath::CharType kStatusTrayWindowClass[] =
132 FPL("Chrome_StatusTrayWindow");
133 #endif // defined(OS_WIN)
135 const char kInitialProfile[] = "Default";
136 const char kMultiProfileDirPrefix[] = "Profile ";
137 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile");
138 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile");
140 // filenames
141 const base::FilePath::CharType kAffiliationDatabaseFileName[] =
142 FPL("Affiliation Database");
143 const base::FilePath::CharType kCacheDirname[] = FPL("Cache");
144 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs");
145 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies");
146 const base::FilePath::CharType kCRLSetFilename[] =
147 FPL("Certificate Revocation Lists");
148 const base::FilePath::CharType kCustomDictionaryFileName[] =
149 FPL("Custom Dictionary.txt");
150 const base::FilePath::CharType kExtensionActivityLogFilename[] =
151 FPL("Extension Activity");
152 const base::FilePath::CharType kExtensionsCookieFilename[] =
153 FPL("Extension Cookies");
154 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run");
155 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store");
156 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State");
157 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool");
158 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data");
159 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache");
160 const base::FilePath::CharType kNetworkPersistentStateFilename[] =
161 FPL("Network Persistent State");
162 const base::FilePath::CharType kOfflinePageMetadataDirname[] =
163 FPL("Offline Pages");
164 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences");
165 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] =
166 FPL("Protected Preferences");
167 const base::FilePath::CharType kReadmeFilename[] = FPL("README");
168 const base::FilePath::CharType kResetPromptMementoFilename[] =
169 FPL("Reset Prompt Memento");
170 const base::FilePath::CharType kSafeBrowsingBaseFilename[] =
171 FPL("Safe Browsing");
172 const base::FilePath::CharType kSecurePreferencesFilename[] =
173 FPL("Secure Preferences");
174 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State");
175 const base::FilePath::CharType kSingletonCookieFilename[] =
176 FPL("SingletonCookie");
177 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock");
178 const base::FilePath::CharType kSingletonSocketFilename[] =
179 FPL("SingletonSocket");
180 const base::FilePath::CharType kSupervisedUserSettingsFilename[] =
181 FPL("Managed Mode Settings");
182 const base::FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak");
183 const base::FilePath::CharType kWebAppDirname[] = FPL("Web Applications");
185 #if defined(OS_WIN)
186 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons");
187 #endif
189 // File name of the Pepper Flash plugin on different platforms.
190 const base::FilePath::CharType kPepperFlashPluginFilename[] =
191 #if defined(OS_MACOSX)
192 FPL("PepperFlashPlayer.plugin");
193 #elif defined(OS_WIN)
194 FPL("pepflashplayer.dll");
195 #else // OS_LINUX, etc.
196 FPL("libpepflashplayer.so");
197 #endif
199 // directory names
200 #if defined(OS_WIN)
201 const wchar_t kUserDataDirname[] = L"User Data";
202 #endif
204 const float kMaxShareOfExtensionProcesses = 0.30f;
206 #if defined(OS_LINUX)
207 const int kLowestRendererOomScore = 300;
208 const int kHighestRendererOomScore = 1000;
209 #endif
211 #if defined(OS_WIN)
212 const wchar_t kMetroNavigationAndSearchMessage[] =
213 L"CHROME_METRO_NAV_SEARCH_REQUEST";
214 const wchar_t kMetroGetCurrentTabInfoMessage[] =
215 L"CHROME_METRO_GET_CURRENT_TAB_INFO";
216 const wchar_t kMetroRegistryPath[] =
217 L"Software\\" PRODUCT_STRING_PATH L"\\Metro";
218 const wchar_t kLaunchModeValue[] = L"launch_mode";
219 // This is used by breakpad and the metrics reporting.
220 const wchar_t kBrowserCrashDumpAttemptsRegistryPath[] =
221 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttempts";
222 const wchar_t kBrowserCrashDumpAttemptsRegistryPathSxS[] =
223 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttemptsSxS";
224 // This is used by browser exit code metrics reporting.
225 const wchar_t kBrowserExitCodesRegistryPath[] =
226 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserExitCodes";
227 #endif
229 #if defined(OS_CHROMEOS)
230 const char kProfileDirPrefix[] = "u-";
231 const char kLegacyProfileDir[] = "user";
232 const char kTestUserProfileDir[] = "test-user";
233 #endif
235 // This GUID is associated with any 'don't ask me again' settings that the
236 // user can select for different file types.
237 // {2676A9A2-D919-4FEE-9187-152100393AB2}
238 const char kApplicationClientIDStringForAVScanning[] =
239 "2676A9A2-D919-4FEE-9187-152100393AB2";
241 const size_t kMaxMetaTagAttributeLength = 2000;
243 } // namespace chrome
245 #undef FPL