| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/safe_browsing/browser_features.h" | |
| 6 | |
| 7 namespace safe_browsing { | |
| 8 namespace features { | |
| 9 const char kUrlHistoryVisitCount[] = "UrlHistoryVisitCount"; | |
| 10 const char kUrlHistoryTypedCount[] = "UrlHistoryTypedCount"; | |
| 11 const char kUrlHistoryLinkCount[] = "UrlHistoryLinkCount"; | |
| 12 const char kUrlHistoryVisitCountMoreThan24hAgo[] = | |
| 13 "UrlHistoryVisitCountMoreThan24hAgo"; | |
| 14 const char kHttpHostVisitCount[] = "HttpHostVisitCount"; | |
| 15 const char kHttpsHostVisitCount[] = "HttpsHostVisitCount"; | |
| 16 const char kFirstHttpHostVisitMoreThan24hAgo[] = | |
| 17 "FirstHttpHostVisitMoreThan24hAgo"; | |
| 18 const char kFirstHttpsHostVisitMoreThan24hAgo[] = | |
| 19 "FirstHttpsHostVisitMoreThan24hAgo"; | |
| 20 | |
| 21 const char kHostPrefix[] = "Host"; | |
| 22 const char kRedirectPrefix[] = "Redirect"; | |
| 23 const char kReferrer[] = "Referrer"; | |
| 24 const char kHasSSLReferrer[] = "HasSSLReferrer"; | |
| 25 const char kPageTransitionType[] = "PageTransitionType"; | |
| 26 const char kIsFirstNavigation[] = "IsFirstNavigation"; | |
| 27 const char kBadIpFetch[] = "BadIpFetch="; | |
| 28 const char kSafeBrowsingMaliciousUrl[] = "SafeBrowsingMaliciousUrl="; | |
| 29 const char kSafeBrowsingOriginalUrl[] = "SafeBrowsingOriginalUrl="; | |
| 30 const char kSafeBrowsingIsSubresource[] = "SafeBrowsingIsSubresource"; | |
| 31 const char kSafeBrowsingThreatType[] = "SafeBrowsingThreatType"; | |
| 32 } // namespace features | |
| 33 } // namespace safe_browsing | |
| OLD | NEW |