| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 const wchar_t kMetroRegistryPath[] = | 248 const wchar_t kMetroRegistryPath[] = |
| 249 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; | 249 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; |
| 250 const wchar_t kLaunchModeValue[] = L"launch_mode"; | 250 const wchar_t kLaunchModeValue[] = L"launch_mode"; |
| 251 // This is used by breakpad and the metrics reporting. | 251 // This is used by breakpad and the metrics reporting. |
| 252 const wchar_t kBrowserCrashDumpAttemptsRegistryPath[] = | 252 const wchar_t kBrowserCrashDumpAttemptsRegistryPath[] = |
| 253 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttempts"; | 253 L"Software\\" PRODUCT_STRING_PATH L"\\BrowserCrashDumpAttempts"; |
| 254 #endif | 254 #endif |
| 255 | 255 |
| 256 #if defined(OS_CHROMEOS) | 256 #if defined(OS_CHROMEOS) |
| 257 const char kProfileDirPrefix[] = "u-"; | 257 const char kProfileDirPrefix[] = "u-"; |
| 258 const char kLegacyProfileDir[] = "user"; |
| 259 const char kTestUserProfileDir[] = "test-user"; |
| 258 #endif | 260 #endif |
| 259 | 261 |
| 260 // This GUID is associated with any 'don't ask me again' settings that the | 262 // This GUID is associated with any 'don't ask me again' settings that the |
| 261 // user can select for different file types. | 263 // user can select for different file types. |
| 262 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 264 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 263 const char kApplicationClientIDStringForAVScanning[] = | 265 const char kApplicationClientIDStringForAVScanning[] = |
| 264 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 266 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 265 | 267 |
| 266 } // namespace chrome | 268 } // namespace chrome |
| 267 | 269 |
| 268 #undef FPL | 270 #undef FPL |
| OLD | NEW |