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

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

Issue 333603002: Modularize Compact Language Detector 2 (CLD2) data sources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Takashi's comments and virtual destructors Created 6 years, 6 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 kCookieFilename[]; 60 extern const base::FilePath::CharType kCookieFilename[];
61 extern const base::FilePath::CharType kCRLSetFilename[]; 61 extern const base::FilePath::CharType kCRLSetFilename[];
62 extern const base::FilePath::CharType kCLDDataFilename[];
63 extern const base::FilePath::CharType kCustomDictionaryFileName[]; 62 extern const base::FilePath::CharType kCustomDictionaryFileName[];
64 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; 63 extern const base::FilePath::CharType kExtensionActivityLogFilename[];
65 extern const base::FilePath::CharType kExtensionsCookieFilename[]; 64 extern const base::FilePath::CharType kExtensionsCookieFilename[];
66 extern const base::FilePath::CharType kFaviconsFilename[]; 65 extern const base::FilePath::CharType kFaviconsFilename[];
67 extern const base::FilePath::CharType kFirstRunSentinel[]; 66 extern const base::FilePath::CharType kFirstRunSentinel[];
68 extern const base::FilePath::CharType kGCMStoreDirname[]; 67 extern const base::FilePath::CharType kGCMStoreDirname[];
69 extern const base::FilePath::CharType kHistoryFilename[]; 68 extern const base::FilePath::CharType kHistoryFilename[];
70 extern const base::FilePath::CharType kJumpListIconDirname[]; 69 extern const base::FilePath::CharType kJumpListIconDirname[];
71 extern const base::FilePath::CharType kLocalStateFilename[]; 70 extern const base::FilePath::CharType kLocalStateFilename[];
72 extern const base::FilePath::CharType kLocalStorePoolName[]; 71 extern const base::FilePath::CharType kLocalStorePoolName[];
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 extern const char kApplicationClientIDStringForAVScanning[]; 158 extern const char kApplicationClientIDStringForAVScanning[];
160 159
161 #if defined(OS_ANDROID) 160 #if defined(OS_ANDROID)
162 // The largest reasonable length we'd assume for a meta tag attribute. 161 // The largest reasonable length we'd assume for a meta tag attribute.
163 extern const size_t kMaxMetaTagAttributeLength; 162 extern const size_t kMaxMetaTagAttributeLength;
164 #endif 163 #endif
165 164
166 } // namespace chrome 165 } // namespace chrome
167 166
168 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 167 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698