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

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

Issue 2450993003: Componentize safe_browsing [1]: create component, move messages, constants and switches. (Closed)
Patch Set: rebase + more fixes Created 4 years, 1 month 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 #include "chrome/common/chrome_constants.h" 5 #include "chrome/common/chrome_constants.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "chrome/common/chrome_version.h" 8 #include "chrome/common/chrome_version.h"
9 9
10 #define FPL FILE_PATH_LITERAL 10 #define FPL FILE_PATH_LITERAL
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 const base::FilePath::CharType kOfflinePageMetadataDirname[] = 154 const base::FilePath::CharType kOfflinePageMetadataDirname[] =
155 FPL("Offline Pages/metadata"); 155 FPL("Offline Pages/metadata");
156 const base::FilePath::CharType kOfflinePageRequestQueueDirname[] = 156 const base::FilePath::CharType kOfflinePageRequestQueueDirname[] =
157 FPL("Offline Pages/request_queue"); 157 FPL("Offline Pages/request_queue");
158 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); 158 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences");
159 const base::FilePath::CharType kPreviewsOptOutDBFilename[] = 159 const base::FilePath::CharType kPreviewsOptOutDBFilename[] =
160 FPL("previews_opt_out.db"); 160 FPL("previews_opt_out.db");
161 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = 161 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] =
162 FPL("Protected Preferences"); 162 FPL("Protected Preferences");
163 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); 163 const base::FilePath::CharType kReadmeFilename[] = FPL("README");
164 const base::FilePath::CharType kSafeBrowsingBaseFilename[] =
165 FPL("Safe Browsing");
166 const base::FilePath::CharType kSecurePreferencesFilename[] = 164 const base::FilePath::CharType kSecurePreferencesFilename[] =
167 FPL("Secure Preferences"); 165 FPL("Secure Preferences");
168 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); 166 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State");
169 const base::FilePath::CharType kSingletonCookieFilename[] = 167 const base::FilePath::CharType kSingletonCookieFilename[] =
170 FPL("SingletonCookie"); 168 FPL("SingletonCookie");
171 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); 169 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock");
172 const base::FilePath::CharType kSingletonSocketFilename[] = 170 const base::FilePath::CharType kSingletonSocketFilename[] =
173 FPL("SingletonSocket"); 171 FPL("SingletonSocket");
174 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = 172 const base::FilePath::CharType kSupervisedUserSettingsFilename[] =
175 FPL("Managed Mode Settings"); 173 FPL("Managed Mode Settings");
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 // user can select for different file types. 212 // user can select for different file types.
215 // {2676A9A2-D919-4FEE-9187-152100393AB2} 213 // {2676A9A2-D919-4FEE-9187-152100393AB2}
216 const char kApplicationClientIDStringForAVScanning[] = 214 const char kApplicationClientIDStringForAVScanning[] =
217 "2676A9A2-D919-4FEE-9187-152100393AB2"; 215 "2676A9A2-D919-4FEE-9187-152100393AB2";
218 216
219 const size_t kMaxMetaTagAttributeLength = 2000; 217 const size_t kMaxMetaTagAttributeLength = 2000;
220 218
221 } // namespace chrome 219 } // namespace chrome
222 220
223 #undef FPL 221 #undef FPL
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698