Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: chrome/common/chrome_constants.cc

Issue 23967015: Use multi-profile mount point by default after browser crash and in Guest session. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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";
258 #endif 259 #endif
259 260
260 // This GUID is associated with any 'don't ask me again' settings that the 261 // This GUID is associated with any 'don't ask me again' settings that the
261 // user can select for different file types. 262 // user can select for different file types.
262 // {2676A9A2-D919-4FEE-9187-152100393AB2} 263 // {2676A9A2-D919-4FEE-9187-152100393AB2}
263 const char kApplicationClientIDStringForAVScanning[] = 264 const char kApplicationClientIDStringForAVScanning[] =
264 "2676A9A2-D919-4FEE-9187-152100393AB2"; 265 "2676A9A2-D919-4FEE-9187-152100393AB2";
265 266
266 } // namespace chrome 267 } // namespace chrome
267 268
268 #undef FPL 269 #undef FPL
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698