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

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

Issue 218583003: Separate storage for protected preferences into Protected Preferences file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Does this solve all known problems? 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 extern const base::FilePath::CharType kHistoryFilename[]; 70 extern const base::FilePath::CharType kHistoryFilename[];
71 extern const base::FilePath::CharType kJumpListIconDirname[]; 71 extern const base::FilePath::CharType kJumpListIconDirname[];
72 extern const base::FilePath::CharType kLocalStateFilename[]; 72 extern const base::FilePath::CharType kLocalStateFilename[];
73 extern const base::FilePath::CharType kLocalStorePoolName[]; 73 extern const base::FilePath::CharType kLocalStorePoolName[];
74 extern const base::FilePath::CharType kLoginDataFileName[]; 74 extern const base::FilePath::CharType kLoginDataFileName[];
75 extern const base::FilePath::CharType kManagedUserSettingsFilename[]; 75 extern const base::FilePath::CharType kManagedUserSettingsFilename[];
76 extern const base::FilePath::CharType kMediaCacheDirname[]; 76 extern const base::FilePath::CharType kMediaCacheDirname[];
77 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; 77 extern const base::FilePath::CharType kNewTabThumbnailsFilename[];
78 extern const base::FilePath::CharType kOBCertFilename[]; 78 extern const base::FilePath::CharType kOBCertFilename[];
79 extern const base::FilePath::CharType kPreferencesFilename[]; 79 extern const base::FilePath::CharType kPreferencesFilename[];
80 extern const base::FilePath::CharType kProtectedPreferencesFilename[];
80 extern const base::FilePath::CharType kReadmeFilename[]; 81 extern const base::FilePath::CharType kReadmeFilename[];
81 extern const base::FilePath::CharType kResetPromptMementoFilename[]; 82 extern const base::FilePath::CharType kResetPromptMementoFilename[];
82 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; 83 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[];
83 extern const base::FilePath::CharType kServiceStateFileName[]; 84 extern const base::FilePath::CharType kServiceStateFileName[];
84 extern const base::FilePath::CharType kShortcutsDatabaseName[]; 85 extern const base::FilePath::CharType kShortcutsDatabaseName[];
85 extern const base::FilePath::CharType kSingletonCookieFilename[]; 86 extern const base::FilePath::CharType kSingletonCookieFilename[];
86 extern const base::FilePath::CharType kSingletonLockFilename[]; 87 extern const base::FilePath::CharType kSingletonLockFilename[];
87 extern const base::FilePath::CharType kSingletonSocketFilename[]; 88 extern const base::FilePath::CharType kSingletonSocketFilename[];
88 extern const base::FilePath::CharType kSyncCredentialsFilename[]; 89 extern const base::FilePath::CharType kSyncCredentialsFilename[];
89 extern const base::FilePath::CharType kThemePackFilename[]; 90 extern const base::FilePath::CharType kThemePackFilename[];
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 extern const char kApplicationClientIDStringForAVScanning[]; 162 extern const char kApplicationClientIDStringForAVScanning[];
162 163
163 #if defined(OS_ANDROID) 164 #if defined(OS_ANDROID)
164 // The largest reasonable length we'd assume for a meta tag attribute. 165 // The largest reasonable length we'd assume for a meta tag attribute.
165 extern const size_t kMaxMetaTagAttributeLength; 166 extern const size_t kMaxMetaTagAttributeLength;
166 #endif 167 #endif
167 168
168 } // namespace chrome 169 } // namespace chrome
169 170
170 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 171 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698