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

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

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: nico's comment + fix tests 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
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | chrome/test/base/testing_profile_manager.h » ('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 #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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 135
136 #if defined(OS_WIN) 136 #if defined(OS_WIN)
137 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); 137 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll");
138 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; 138 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow";
139 #endif // defined(OS_WIN) 139 #endif // defined(OS_WIN)
140 140
141 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; 141 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt";
142 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; 142 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll";
143 const char kInitialProfile[] = "Default"; 143 const char kInitialProfile[] = "Default";
144 const char kMultiProfileDirPrefix[] = "Profile "; 144 const char kMultiProfileDirPrefix[] = "Profile ";
145 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); 145 const char kGuestProfileDir[] = "Guest Profile";
146 const char kUserManagerProfileDir[] = "UserManager Profile";
146 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; 147 const wchar_t kBrowserResourcesDll[] = L"chrome.dll";
147 148
148 // filenames 149 // filenames
149 #if defined(OS_ANDROID) 150 #if defined(OS_ANDROID)
150 const base::FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); 151 const base::FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache");
151 #endif 152 #endif
152 const base::FilePath::CharType kArchivedHistoryFilename[] = 153 const base::FilePath::CharType kArchivedHistoryFilename[] =
153 FPL("Archived History"); 154 FPL("Archived History");
154 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); 155 const base::FilePath::CharType kCacheDirname[] = FPL("Cache");
155 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); 156 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies");
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 const char kApplicationClientIDStringForAVScanning[] = 269 const char kApplicationClientIDStringForAVScanning[] =
269 "2676A9A2-D919-4FEE-9187-152100393AB2"; 270 "2676A9A2-D919-4FEE-9187-152100393AB2";
270 271
271 #if defined(OS_ANDROID) 272 #if defined(OS_ANDROID)
272 const size_t kMaxMetaTagAttributeLength = 2000; 273 const size_t kMaxMetaTagAttributeLength = 2000;
273 #endif 274 #endif
274 275
275 } // namespace chrome 276 } // namespace chrome
276 277
277 #undef FPL 278 #undef FPL
OLDNEW
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | chrome/test/base/testing_profile_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698