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

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

Issue 205813002: Separate storage for protected preferences into Protected Preferences file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pp4_profile_pref_store
Patch Set: Pre-review. Created 6 years, 9 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
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); 170 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State");
171 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); 171 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool");
172 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); 172 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data");
173 const base::FilePath::CharType kManagedUserSettingsFilename[] = 173 const base::FilePath::CharType kManagedUserSettingsFilename[] =
174 FPL("Managed Mode Settings"); 174 FPL("Managed Mode Settings");
175 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); 175 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache");
176 const base::FilePath::CharType kNewTabThumbnailsFilename[] = 176 const base::FilePath::CharType kNewTabThumbnailsFilename[] =
177 FPL("Top Thumbnails"); 177 FPL("Top Thumbnails");
178 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); 178 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs");
179 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); 179 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences");
180 const base::FilePath::CharType kProtectedPreferencesFilename[] =
181 FPL("Protected Preferences");
180 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); 182 const base::FilePath::CharType kReadmeFilename[] = FPL("README");
181 const base::FilePath::CharType kResetPromptMementoFilename[] = 183 const base::FilePath::CharType kResetPromptMementoFilename[] =
182 FPL("Reset Prompt Memento"); 184 FPL("Reset Prompt Memento");
183 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = 185 const base::FilePath::CharType kSafeBrowsingBaseFilename[] =
184 FPL("Safe Browsing"); 186 FPL("Safe Browsing");
185 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); 187 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State");
186 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); 188 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts");
187 const base::FilePath::CharType kSingletonCookieFilename[] = 189 const base::FilePath::CharType kSingletonCookieFilename[] =
188 FPL("SingletonCookie"); 190 FPL("SingletonCookie");
189 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); 191 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock");
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 const char kApplicationClientIDStringForAVScanning[] = 269 const char kApplicationClientIDStringForAVScanning[] =
268 "2676A9A2-D919-4FEE-9187-152100393AB2"; 270 "2676A9A2-D919-4FEE-9187-152100393AB2";
269 271
270 #if defined(OS_ANDROID) 272 #if defined(OS_ANDROID)
271 const size_t kMaxMetaTagAttributeLength = 2000; 273 const size_t kMaxMetaTagAttributeLength = 2000;
272 #endif 274 #endif
273 275
274 } // namespace chrome 276 } // namespace chrome
275 277
276 #undef FPL 278 #undef FPL
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698