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

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

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 wchar_t kBrowserResourcesDll[]; 52 extern const wchar_t kBrowserResourcesDll[];
53 53
54 // filenames 54 // filenames
55 #if defined(OS_ANDROID) 55 #if defined(OS_ANDROID)
56 extern const base::FilePath::CharType kAndroidCacheFilename[]; 56 extern const base::FilePath::CharType kAndroidCacheFilename[];
57 #endif 57 #endif
58 extern const base::FilePath::CharType kArchivedHistoryFilename[]; 58 extern const base::FilePath::CharType kArchivedHistoryFilename[];
59 extern const base::FilePath::CharType kCacheDirname[]; 59 extern const base::FilePath::CharType kCacheDirname[];
60 extern const base::FilePath::CharType kChannelIDFilename[];
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[];
62 extern const base::FilePath::CharType kCustomDictionaryFileName[]; 63 extern const base::FilePath::CharType kCustomDictionaryFileName[];
63 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; 64 extern const base::FilePath::CharType kExtensionActivityLogFilename[];
64 extern const base::FilePath::CharType kExtensionsCookieFilename[]; 65 extern const base::FilePath::CharType kExtensionsCookieFilename[];
65 extern const base::FilePath::CharType kFaviconsFilename[]; 66 extern const base::FilePath::CharType kFaviconsFilename[];
66 extern const base::FilePath::CharType kFirstRunSentinel[]; 67 extern const base::FilePath::CharType kFirstRunSentinel[];
67 extern const base::FilePath::CharType kGCMStoreDirname[]; 68 extern const base::FilePath::CharType kGCMStoreDirname[];
68 extern const base::FilePath::CharType kHistoryFilename[]; 69 extern const base::FilePath::CharType kHistoryFilename[];
69 extern const base::FilePath::CharType kJumpListIconDirname[]; 70 extern const base::FilePath::CharType kJumpListIconDirname[];
70 extern const base::FilePath::CharType kLocalStateFilename[]; 71 extern const base::FilePath::CharType kLocalStateFilename[];
71 extern const base::FilePath::CharType kLocalStorePoolName[]; 72 extern const base::FilePath::CharType kLocalStorePoolName[];
72 extern const base::FilePath::CharType kLoginDataFileName[]; 73 extern const base::FilePath::CharType kLoginDataFileName[];
73 extern const base::FilePath::CharType kMediaCacheDirname[]; 74 extern const base::FilePath::CharType kMediaCacheDirname[];
74 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; 75 extern const base::FilePath::CharType kNewTabThumbnailsFilename[];
75 extern const base::FilePath::CharType kOBCertFilename[];
76 extern const base::FilePath::CharType kPreferencesFilename[]; 76 extern const base::FilePath::CharType kPreferencesFilename[];
77 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; 77 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[];
78 extern const base::FilePath::CharType kReadmeFilename[]; 78 extern const base::FilePath::CharType kReadmeFilename[];
79 extern const base::FilePath::CharType kResetPromptMementoFilename[]; 79 extern const base::FilePath::CharType kResetPromptMementoFilename[];
80 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; 80 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[];
81 extern const base::FilePath::CharType kSecurePreferencesFilename[]; 81 extern const base::FilePath::CharType kSecurePreferencesFilename[];
82 extern const base::FilePath::CharType kServiceStateFileName[]; 82 extern const base::FilePath::CharType kServiceStateFileName[];
83 extern const base::FilePath::CharType kShortcutsDatabaseName[]; 83 extern const base::FilePath::CharType kShortcutsDatabaseName[];
84 extern const base::FilePath::CharType kSingletonCookieFilename[]; 84 extern const base::FilePath::CharType kSingletonCookieFilename[];
85 extern const base::FilePath::CharType kSingletonLockFilename[]; 85 extern const base::FilePath::CharType kSingletonLockFilename[];
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 extern const char kApplicationClientIDStringForAVScanning[]; 159 extern const char kApplicationClientIDStringForAVScanning[];
160 160
161 #if defined(OS_ANDROID) 161 #if defined(OS_ANDROID)
162 // The largest reasonable length we'd assume for a meta tag attribute. 162 // The largest reasonable length we'd assume for a meta tag attribute.
163 extern const size_t kMaxMetaTagAttributeLength; 163 extern const size_t kMaxMetaTagAttributeLength;
164 #endif 164 #endif
165 165
166 } // namespace chrome 166 } // namespace chrome
167 167
168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698