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

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

Issue 164535: Create BlacklistManager, which will aggregate individual blacklists into one compiled one (Closed)
Patch Set: sync with trunk, fix little things Created 11 years, 2 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/file_path.h" 10 #include "base/file_path.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 extern const FilePath::CharType kPreferencesFilename[]; 45 extern const FilePath::CharType kPreferencesFilename[];
46 extern const FilePath::CharType kSafeBrowsingFilename[]; 46 extern const FilePath::CharType kSafeBrowsingFilename[];
47 extern const FilePath::CharType kSingletonSocketFilename[]; 47 extern const FilePath::CharType kSingletonSocketFilename[];
48 extern const FilePath::CharType kSingletonLockFilename[]; 48 extern const FilePath::CharType kSingletonLockFilename[];
49 extern const FilePath::CharType kThumbnailsFilename[]; 49 extern const FilePath::CharType kThumbnailsFilename[];
50 extern const FilePath::CharType kNewTabThumbnailsFilename[]; 50 extern const FilePath::CharType kNewTabThumbnailsFilename[];
51 extern const wchar_t kUserDataDirname[]; 51 extern const wchar_t kUserDataDirname[];
52 extern const FilePath::CharType kUserScriptsDirname[]; 52 extern const FilePath::CharType kUserScriptsDirname[];
53 extern const FilePath::CharType kWebDataFilename[]; 53 extern const FilePath::CharType kWebDataFilename[];
54 extern const FilePath::CharType kBookmarksFileName[]; 54 extern const FilePath::CharType kBookmarksFileName[];
55 extern const FilePath::CharType kPrivacyBlacklistFileName[];
55 extern const FilePath::CharType kHistoryBookmarksFileName[]; 56 extern const FilePath::CharType kHistoryBookmarksFileName[];
56 extern const FilePath::CharType kCustomDictionaryFileName[]; 57 extern const FilePath::CharType kCustomDictionaryFileName[];
57 extern const FilePath::CharType kLoginDataFileName[]; 58 extern const FilePath::CharType kLoginDataFileName[];
58 extern const FilePath::CharType kJumpListIconDirname[]; 59 extern const FilePath::CharType kJumpListIconDirname[];
59 60
60 extern const unsigned int kMaxRendererProcessCount; 61 extern const unsigned int kMaxRendererProcessCount;
61 extern const int kStatsMaxThreads; 62 extern const int kStatsMaxThreads;
62 extern const int kStatsMaxCounters; 63 extern const int kStatsMaxCounters;
63 64
64 // The maximum number of characters of the document's title that we're willing 65 // The maximum number of characters of the document's title that we're willing
65 // to send to the browser process. 66 // to send to the browser process.
66 extern const size_t kMaxTitleChars; 67 extern const size_t kMaxTitleChars;
67 68
68 extern const bool kRecordModeEnabled; 69 extern const bool kRecordModeEnabled;
69 70
70 } // namespace chrome 71 } // namespace chrome
71 72
72 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 73 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698