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

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

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: fix ProfileManagerTest,InputMethodPersistenceTest 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
« no previous file with comments | « chrome/browser/profiles/profile_manager_unittest.cc ('k') | chrome/common/chrome_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // A handful of resource-like constants related to the Chrome application. 5 // A handful of resource-like constants related to the Chrome application.
6 6
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 // stored in a subkey named with the version number of the build. Each value 136 // stored in a subkey named with the version number of the build. Each value
137 // under the subkey represents an additional attempt. 137 // under the subkey represents an additional attempt.
138 extern const wchar_t kBrowserCrashDumpAttemptsRegistryPath[]; 138 extern const wchar_t kBrowserCrashDumpAttemptsRegistryPath[];
139 #endif 139 #endif
140 140
141 #if defined(OS_CHROMEOS) 141 #if defined(OS_CHROMEOS)
142 // Chrome OS profile directories have custom prefix. 142 // Chrome OS profile directories have custom prefix.
143 // Profile path format: [user_data_dir]/u-[$hash] 143 // Profile path format: [user_data_dir]/u-[$hash]
144 // Ex.: /home/chronos/u-0123456789 144 // Ex.: /home/chronos/u-0123456789
145 extern const char kProfileDirPrefix[]; 145 extern const char kProfileDirPrefix[];
146
147 // Legacy profile dir that was used when only one cryptohome has been mounted.
148 extern const char kLegacyProfileDir[];
149
150 // This must be kept in sync with TestingProfile::kTestUserProfileDir.
151 extern const char kTestUserProfileDir[];
146 #endif 152 #endif
147 153
148 // Used to identify the application to the system AV function in Windows. 154 // Used to identify the application to the system AV function in Windows.
149 extern const char kApplicationClientIDStringForAVScanning[]; 155 extern const char kApplicationClientIDStringForAVScanning[];
150 156
151 } // namespace chrome 157 } // namespace chrome
152 158
153 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 159 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_manager_unittest.cc ('k') | chrome/common/chrome_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698