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

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

Issue 7017032: Roll out v1 of the client-side phishing detection model, to replace v0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Delete the old version of the model Created 9 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "base/file_path.h" 7 #include "base/file_path.h"
8 8
9 #define FPL FILE_PATH_LITERAL 9 #define FPL FILE_PATH_LITERAL
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); 85 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak");
86 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); 86 const FilePath::CharType kCookieFilename[] = FPL("Cookies");
87 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); 87 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies");
88 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); 88 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps");
89 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); 89 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons");
90 const FilePath::CharType kHistoryFilename[] = FPL("History"); 90 const FilePath::CharType kHistoryFilename[] = FPL("History");
91 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); 91 const FilePath::CharType kLocalStateFilename[] = FPL("Local State");
92 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); 92 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences");
93 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); 93 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing");
94 const FilePath::CharType kSafeBrowsingPhishingModelFilename[] = 94 const FilePath::CharType kSafeBrowsingPhishingModelFilename[] =
95 FPL("Safe Browsing Phishing Model"); 95 FPL("Safe Browsing Phishing Model v1");
96 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); 96 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie");
97 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); 97 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket");
98 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); 98 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock");
99 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); 99 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails");
100 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); 100 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails");
101 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); 101 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites");
102 const wchar_t kUserDataDirname[] = L"User Data"; 102 const wchar_t kUserDataDirname[] = L"User Data";
103 const FilePath::CharType kUserScriptsDirname[] = FPL("User Scripts"); 103 const FilePath::CharType kUserScriptsDirname[] = FPL("User Scripts");
104 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); 104 const FilePath::CharType kWebDataFilename[] = FPL("Web Data");
105 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); 105 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks");
(...skipping 25 matching lines...) Expand all
131 131
132 const char* const kUnknownLanguageCode = "und"; 132 const char* const kUnknownLanguageCode = "und";
133 133
134 const int kJavascriptMessageExpectedDelay = 1000; 134 const int kJavascriptMessageExpectedDelay = 1000;
135 135
136 const bool kEnableTouchIcon = false; 136 const bool kEnableTouchIcon = false;
137 137
138 } // namespace chrome 138 } // namespace chrome
139 139
140 #undef FPL 140 #undef FPL
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/client_side_detection_service.cc ('k') | chrome/renderer/safe_browsing/scorer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698