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

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

Issue 187393005: Make it possible to read CLD data from a file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Marcus' and Jochen's comments 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 // 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 // filenames 50 // filenames
51 #if defined(OS_ANDROID) 51 #if defined(OS_ANDROID)
52 extern const base::FilePath::CharType kAndroidCacheFilename[]; 52 extern const base::FilePath::CharType kAndroidCacheFilename[];
53 #endif 53 #endif
54 extern const base::FilePath::CharType kArchivedHistoryFilename[]; 54 extern const base::FilePath::CharType kArchivedHistoryFilename[];
55 extern const base::FilePath::CharType kBookmarksFileName[]; 55 extern const base::FilePath::CharType kBookmarksFileName[];
56 extern const base::FilePath::CharType kCacheDirname[]; 56 extern const base::FilePath::CharType kCacheDirname[];
57 extern const base::FilePath::CharType kCookieFilename[]; 57 extern const base::FilePath::CharType kCookieFilename[];
58 extern const base::FilePath::CharType kCRLSetFilename[]; 58 extern const base::FilePath::CharType kCRLSetFilename[];
59 extern const base::FilePath::CharType kCLDDataFilename[];
59 extern const base::FilePath::CharType kCustomDictionaryFileName[]; 60 extern const base::FilePath::CharType kCustomDictionaryFileName[];
60 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; 61 extern const base::FilePath::CharType kExtensionActivityLogFilename[];
61 extern const base::FilePath::CharType kExtensionsCookieFilename[]; 62 extern const base::FilePath::CharType kExtensionsCookieFilename[];
62 extern const base::FilePath::CharType kFaviconsFilename[]; 63 extern const base::FilePath::CharType kFaviconsFilename[];
63 extern const base::FilePath::CharType kFirstRunSentinel[]; 64 extern const base::FilePath::CharType kFirstRunSentinel[];
64 extern const base::FilePath::CharType kGCMStoreDirname[]; 65 extern const base::FilePath::CharType kGCMStoreDirname[];
65 extern const base::FilePath::CharType kHistoryFilename[]; 66 extern const base::FilePath::CharType kHistoryFilename[];
66 extern const base::FilePath::CharType kJumpListIconDirname[]; 67 extern const base::FilePath::CharType kJumpListIconDirname[];
67 extern const base::FilePath::CharType kLocalStateFilename[]; 68 extern const base::FilePath::CharType kLocalStateFilename[];
68 extern const base::FilePath::CharType kLocalStorePoolName[]; 69 extern const base::FilePath::CharType kLocalStorePoolName[];
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 extern const char kApplicationClientIDStringForAVScanning[]; 157 extern const char kApplicationClientIDStringForAVScanning[];
157 158
158 #if defined(OS_ANDROID) 159 #if defined(OS_ANDROID)
159 // The largest reasonable length we'd assume for a meta tag attribute. 160 // The largest reasonable length we'd assume for a meta tag attribute.
160 extern const size_t kMaxMetaTagAttributeLength; 161 extern const size_t kMaxMetaTagAttributeLength;
161 #endif 162 #endif
162 163
163 } // namespace chrome 164 } // namespace chrome
164 165
165 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 166 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698