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"
18 #error Unknown branding
20 #endif // defined(OS_MACOSX)
24 const char kChromeVersionEnvVar
[] = "CHROME_VERSION";
26 // The following should not be used for UI strings; they are meant
27 // for system strings only. UI changes should be made in the GRD.
29 // There are four constants used to locate the executable name and path:
31 // kBrowserProcessExecutableName
32 // kHelperProcessExecutableName
33 // kBrowserProcessExecutablePath
34 // kHelperProcessExecutablePath
36 // In one condition, our tests will be built using the Chrome branding
37 // though we want to actually execute a Chromium branded application.
38 // This happens for the reference build on Mac. To support that case,
39 // we also include a Chromium version of each of the four constants and
40 // in the UITest class we support switching to that version when told to
44 const base::FilePath::CharType kBrowserProcessExecutableNameChromium
[] =
46 const base::FilePath::CharType kBrowserProcessExecutableName
[] =
48 const base::FilePath::CharType kHelperProcessExecutableNameChromium
[] =
50 const base::FilePath::CharType kHelperProcessExecutableName
[] =
52 #elif defined(OS_MACOSX)
53 const base::FilePath::CharType kBrowserProcessExecutableNameChromium
[] =
54 FPL(CHROMIUM_PRODUCT_STRING
);
55 const base::FilePath::CharType kBrowserProcessExecutableName
[] =
57 const base::FilePath::CharType kHelperProcessExecutableNameChromium
[] =
58 FPL(CHROMIUM_PRODUCT_STRING
" Helper");
59 const base::FilePath::CharType kHelperProcessExecutableName
[] =
60 FPL(PRODUCT_STRING
" Helper");
61 #elif defined(OS_ANDROID)
62 // NOTE: Keep it synced with the process names defined in AndroidManifest.xml.
63 const base::FilePath::CharType kBrowserProcessExecutableName
[] = FPL("chrome");
64 const base::FilePath::CharType kBrowserProcessExecutableNameChromium
[] =
66 const base::FilePath::CharType kHelperProcessExecutableName
[] =
67 FPL("sandboxed_process");
68 const base::FilePath::CharType kHelperProcessExecutableNameChromium
[] = FPL("");
69 #elif defined(OS_POSIX)
70 const base::FilePath::CharType kBrowserProcessExecutableNameChromium
[] =
72 const base::FilePath::CharType kBrowserProcessExecutableName
[] = FPL("chrome");
73 // Helper processes end up with a name of "exe" due to execing via
74 // /proc/self/exe. See bug 22703.
75 const base::FilePath::CharType kHelperProcessExecutableNameChromium
[] =
77 const base::FilePath::CharType kHelperProcessExecutableName
[] = FPL("exe");
81 const base::FilePath::CharType kBrowserProcessExecutablePathChromium
[] =
83 const base::FilePath::CharType kBrowserProcessExecutablePath
[] =
85 const base::FilePath::CharType kHelperProcessExecutablePathChromium
[] =
87 const base::FilePath::CharType kHelperProcessExecutablePath
[] =
89 #elif defined(OS_MACOSX)
90 const base::FilePath::CharType kBrowserProcessExecutablePathChromium
[] =
91 FPL(CHROMIUM_PRODUCT_STRING
".app/Contents/MacOS/" CHROMIUM_PRODUCT_STRING
);
92 const base::FilePath::CharType kBrowserProcessExecutablePath
[] =
93 FPL(PRODUCT_STRING
".app/Contents/MacOS/" PRODUCT_STRING
);
94 const base::FilePath::CharType kHelperProcessExecutablePathChromium
[] =
95 FPL(CHROMIUM_PRODUCT_STRING
" Helper.app/Contents/MacOS/"
96 CHROMIUM_PRODUCT_STRING
" Helper");
97 const base::FilePath::CharType kHelperProcessExecutablePath
[] =
98 FPL(PRODUCT_STRING
" Helper.app/Contents/MacOS/" PRODUCT_STRING
" Helper");
99 #elif defined(OS_ANDROID)
100 const base::FilePath::CharType kBrowserProcessExecutablePath
[] = FPL("chrome");
101 const base::FilePath::CharType kHelperProcessExecutablePath
[] = FPL("chrome");
102 const base::FilePath::CharType kBrowserProcessExecutablePathChromium
[] =
104 const base::FilePath::CharType kHelperProcessExecutablePathChromium
[] =
106 #elif defined(OS_POSIX)
107 const base::FilePath::CharType kBrowserProcessExecutablePathChromium
[] =
109 const base::FilePath::CharType kBrowserProcessExecutablePath
[] = FPL("chrome");
110 const base::FilePath::CharType kHelperProcessExecutablePathChromium
[] =
112 const base::FilePath::CharType kHelperProcessExecutablePath
[] = FPL("chrome");
115 #if defined(OS_MACOSX)
116 const base::FilePath::CharType kFrameworkName
[] =
117 FPL(PRODUCT_STRING
" Framework.framework");
119 const char* const kHelperFlavorSuffixes
[] = {
120 FPL("EH"), // Executable heap
127 const base::FilePath::CharType kMetroDriverDll
[] = FPL("metro_driver.dll");
128 const wchar_t kStatusTrayWindowClass
[] = L
"Chrome_StatusTrayWindow";
129 #endif // defined(OS_WIN)
131 const wchar_t kCrashReportLog
[] = L
"Reported Crashes.txt";
132 const wchar_t kTestingInterfaceDLL
[] = L
"testing_interface.dll";
133 const char kInitialProfile
[] = "Default";
134 const char kMultiProfileDirPrefix
[] = "Profile ";
135 const base::FilePath::CharType kGuestProfileDir
[] = FPL("Guest Profile");
136 const wchar_t kBrowserResourcesDll
[] = L
"chrome.dll";
139 #if defined(OS_ANDROID)
140 const base::FilePath::CharType kAndroidCacheFilename
[] = FPL("AndroidCache");
142 const base::FilePath::CharType kArchivedHistoryFilename
[] =
143 FPL("Archived History");
144 const base::FilePath::CharType kCacheDirname
[] = FPL("Cache");
145 const base::FilePath::CharType kChannelIDFilename
[] = FPL("Origin Bound Certs");
146 const base::FilePath::CharType kCookieFilename
[] = FPL("Cookies");
147 const base::FilePath::CharType kCRLSetFilename
[] =
148 FPL("Certificate Revocation Lists");
149 const base::FilePath::CharType kCustomDictionaryFileName
[] =
150 FPL("Custom Dictionary.txt");
151 const base::FilePath::CharType kExtensionActivityLogFilename
[] =
152 FPL("Extension Activity");
153 const base::FilePath::CharType kExtensionsCookieFilename
[] =
154 FPL("Extension Cookies");
155 const base::FilePath::CharType kFaviconsFilename
[] = FPL("Favicons");
156 const base::FilePath::CharType kFirstRunSentinel
[] = FPL("First Run");
157 const base::FilePath::CharType kGCMStoreDirname
[] = FPL("GCM Store");
158 const base::FilePath::CharType kHistoryFilename
[] = FPL("History");
159 const base::FilePath::CharType kJumpListIconDirname
[] = FPL("JumpListIcons");
160 const base::FilePath::CharType kLocalStateFilename
[] = FPL("Local State");
161 const base::FilePath::CharType kLocalStorePoolName
[] = FPL("LocalStorePool");
162 const base::FilePath::CharType kLoginDataFileName
[] = FPL("Login Data");
163 const base::FilePath::CharType kMediaCacheDirname
[] = FPL("Media Cache");
164 const base::FilePath::CharType kNewTabThumbnailsFilename
[] =
165 FPL("Top Thumbnails");
166 const base::FilePath::CharType kPreferencesFilename
[] = FPL("Preferences");
167 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated
[] =
168 FPL("Protected Preferences");
169 const base::FilePath::CharType kReadmeFilename
[] = FPL("README");
170 const base::FilePath::CharType kResetPromptMementoFilename
[] =
171 FPL("Reset Prompt Memento");
172 const base::FilePath::CharType kSafeBrowsingBaseFilename
[] =
173 FPL("Safe Browsing");
174 const base::FilePath::CharType kSecurePreferencesFilename
[] =
175 FPL("Secure Preferences");
176 const base::FilePath::CharType kServiceStateFileName
[] = FPL("Service State");
177 const base::FilePath::CharType kShortcutsDatabaseName
[] = FPL("Shortcuts");
178 const base::FilePath::CharType kSingletonCookieFilename
[] =
179 FPL("SingletonCookie");
180 const base::FilePath::CharType kSingletonLockFilename
[] = FPL("SingletonLock");
181 const base::FilePath::CharType kSingletonSocketFilename
[] =
182 FPL("SingletonSocket");
183 const base::FilePath::CharType kSupervisedUserSettingsFilename
[] =
184 FPL("Managed Mode Settings");
185 const base::FilePath::CharType kSyncCredentialsFilename
[] =
186 FPL("Sync Credentials");
187 const base::FilePath::CharType kThemePackFilename
[] = FPL("Cached Theme.pak");
188 const base::FilePath::CharType kThumbnailsFilename
[] = FPL("Thumbnails");
189 const base::FilePath::CharType kTopSitesFilename
[] = FPL("Top Sites");
190 const base::FilePath::CharType kWebAppDirname
[] = FPL("Web Applications");
192 // File name of the Pepper Flash plugin on different platforms.
193 const base::FilePath::CharType kPepperFlashPluginFilename
[] =
194 #if defined(OS_MACOSX)
195 FPL("PepperFlashPlayer.plugin");
196 #elif defined(OS_WIN)
197 FPL("pepflashplayer.dll");
198 #else // OS_LINUX, etc.
199 FPL("libpepflashplayer.so");
203 const wchar_t kUserDataDirname
[] = L
"User Data";
205 // We don't enable record mode in the released product because users could
206 // potentially be tricked into running a product in record mode without
207 // knowing it. Enable in debug builds. Playback mode is allowed always,
208 // because it is useful for testing and not hazardous by itself.
210 // const bool kRecordModeEnabled = true;
212 // const bool kRecordModeEnabled = false;
215 const bool kRecordModeEnabled
= true;
217 #if defined(OS_ANDROID) || defined(OS_IOS)
218 const bool kEnableTouchIcon
= true;
220 const bool kEnableTouchIcon
= false;
223 const float kMaxShareOfExtensionProcesses
= 0.30f
;
225 #if defined(OS_LINUX)
226 const int kLowestRendererOomScore
= 300;
227 const int kHighestRendererOomScore
= 1000;
231 const wchar_t kMetroNavigationAndSearchMessage
[] =
232 L
"CHROME_METRO_NAV_SEARCH_REQUEST";
233 const wchar_t kMetroGetCurrentTabInfoMessage
[] =
234 L
"CHROME_METRO_GET_CURRENT_TAB_INFO";
235 const wchar_t kMetroRegistryPath
[] =
236 L
"Software\\" PRODUCT_STRING_PATH L
"\\Metro";
237 const wchar_t kLaunchModeValue
[] = L
"launch_mode";
238 // This is used by breakpad and the metrics reporting.
239 const wchar_t kBrowserCrashDumpAttemptsRegistryPath
[] =
240 L
"Software\\" PRODUCT_STRING_PATH L
"\\BrowserCrashDumpAttempts";
241 const char kSafeModeEnvVar
[] = "CHROME_SAFE_MODE";
244 #if defined(OS_CHROMEOS)
245 const char kProfileDirPrefix
[] = "u-";
246 const char kLegacyProfileDir
[] = "user";
247 const char kTestUserProfileDir
[] = "test-user";
250 // This GUID is associated with any 'don't ask me again' settings that the
251 // user can select for different file types.
252 // {2676A9A2-D919-4FEE-9187-152100393AB2}
253 const char kApplicationClientIDStringForAVScanning
[] =
254 "2676A9A2-D919-4FEE-9187-152100393AB2";
256 const size_t kMaxMetaTagAttributeLength
= 2000;
258 } // namespace chrome