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