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

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

Issue 239543012: The User Manager should be backed by a special profile, not the guest one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 // 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #endif // OS_MACOSX 42 #endif // OS_MACOSX
43 #if defined(OS_WIN) 43 #if defined(OS_WIN)
44 extern const base::FilePath::CharType kMetroDriverDll[]; 44 extern const base::FilePath::CharType kMetroDriverDll[];
45 extern const wchar_t kStatusTrayWindowClass[]; 45 extern const wchar_t kStatusTrayWindowClass[];
46 #endif // defined(OS_WIN) 46 #endif // defined(OS_WIN)
47 extern const wchar_t kCrashReportLog[]; 47 extern const wchar_t kCrashReportLog[];
48 extern const wchar_t kTestingInterfaceDLL[]; 48 extern const wchar_t kTestingInterfaceDLL[];
49 extern const char kInitialProfile[]; 49 extern const char kInitialProfile[];
50 extern const char kMultiProfileDirPrefix[]; 50 extern const char kMultiProfileDirPrefix[];
51 extern const base::FilePath::CharType kGuestProfileDir[]; 51 extern const base::FilePath::CharType kGuestProfileDir[];
52 extern const base::FilePath::CharType kUserManagerProfileDir[];
Nico 2014/04/16 18:03:16 Any reason these aren't char like kInitialProfile?
noms (inactive) 2014/04/16 18:36:03 Done. On 2014/04/16 18:03:16, Nico wrote:
52 extern const wchar_t kBrowserResourcesDll[]; 53 extern const wchar_t kBrowserResourcesDll[];
53 54
54 // filenames 55 // filenames
55 #if defined(OS_ANDROID) 56 #if defined(OS_ANDROID)
56 extern const base::FilePath::CharType kAndroidCacheFilename[]; 57 extern const base::FilePath::CharType kAndroidCacheFilename[];
57 #endif 58 #endif
58 extern const base::FilePath::CharType kArchivedHistoryFilename[]; 59 extern const base::FilePath::CharType kArchivedHistoryFilename[];
59 extern const base::FilePath::CharType kCacheDirname[]; 60 extern const base::FilePath::CharType kCacheDirname[];
60 extern const base::FilePath::CharType kCookieFilename[]; 61 extern const base::FilePath::CharType kCookieFilename[];
61 extern const base::FilePath::CharType kCRLSetFilename[]; 62 extern const base::FilePath::CharType kCRLSetFilename[];
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 extern const char kApplicationClientIDStringForAVScanning[]; 160 extern const char kApplicationClientIDStringForAVScanning[];
160 161
161 #if defined(OS_ANDROID) 162 #if defined(OS_ANDROID)
162 // The largest reasonable length we'd assume for a meta tag attribute. 163 // The largest reasonable length we'd assume for a meta tag attribute.
163 extern const size_t kMaxMetaTagAttributeLength; 164 extern const size_t kMaxMetaTagAttributeLength;
164 #endif 165 #endif
165 166
166 } // namespace chrome 167 } // namespace chrome
167 168
168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 169 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/profiles/user_manager_view.cc ('k') | chrome/common/chrome_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698