| 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 #include "chrome/common/chrome_constants.h" | 5 #include "chrome/common/chrome_constants.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 | 8 |
| 9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 10 | 10 |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 const wchar_t kMetroNavigationAndSearchMessage[] = | 236 const wchar_t kMetroNavigationAndSearchMessage[] = |
| 237 L"CHROME_METRO_NAV_SEARCH_REQUEST"; | 237 L"CHROME_METRO_NAV_SEARCH_REQUEST"; |
| 238 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 238 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
| 239 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 239 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
| 240 const wchar_t kMetroRegistryPath[] = | 240 const wchar_t kMetroRegistryPath[] = |
| 241 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; | 241 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; |
| 242 const wchar_t kLaunchModeValue[] = L"launch_mode"; | 242 const wchar_t kLaunchModeValue[] = L"launch_mode"; |
| 243 // This is used by breakpad and the metrics reporting. | 243 // This is used by breakpad and the metrics reporting. |
| 244 const wchar_t kBrowserCrashDumpAttemptsRegistryPath[] = | 244 const wchar_t kBrowserCrashDumpAttemptsRegistryPath[] = |
| 245 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttempts"; | 245 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttempts"; |
| 246 // This is used by browser exit code metrics reporting. |
| 247 const wchar_t kBrowserExitCodesRegistryPath[] = |
| 248 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserExitCodes"; |
| 246 const char kSafeModeEnvVar[] = "CHROME_SAFE_MODE"; | 249 const char kSafeModeEnvVar[] = "CHROME_SAFE_MODE"; |
| 247 #endif | 250 #endif |
| 248 | 251 |
| 249 #if defined(OS_CHROMEOS) | 252 #if defined(OS_CHROMEOS) |
| 250 const char kProfileDirPrefix[] = "u-"; | 253 const char kProfileDirPrefix[] = "u-"; |
| 251 const char kLegacyProfileDir[] = "user"; | 254 const char kLegacyProfileDir[] = "user"; |
| 252 const char kTestUserProfileDir[] = "test-user"; | 255 const char kTestUserProfileDir[] = "test-user"; |
| 253 #endif | 256 #endif |
| 254 | 257 |
| 255 // This GUID is associated with any 'don't ask me again' settings that the | 258 // This GUID is associated with any 'don't ask me again' settings that the |
| 256 // user can select for different file types. | 259 // user can select for different file types. |
| 257 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 260 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 258 const char kApplicationClientIDStringForAVScanning[] = | 261 const char kApplicationClientIDStringForAVScanning[] = |
| 259 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 262 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 260 | 263 |
| 261 const size_t kMaxMetaTagAttributeLength = 2000; | 264 const size_t kMaxMetaTagAttributeLength = 2000; |
| 262 | 265 |
| 263 } // namespace chrome | 266 } // namespace chrome |
| 264 | 267 |
| 265 #undef FPL | 268 #undef FPL |
| OLD | NEW |