// Copyright 2010 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // PhishingUrlFeatureExtractor handles computing URL-based features for // the client-side phishing detection model. These include tokens in the // host and path, features pertaining to host length, and IP addresses. #ifndef COMPONENTS_SAFE_BROWSING_CONTENT_RENDERER_PHISHING_CLASSIFIER_PHISHING_URL_FEATURE_EXTRACTOR_H_ #define COMPONENTS_SAFE_BROWSING_CONTENT_RENDERER_PHISHING_CLASSIFIER_PHISHING_URL_FEATURE_EXTRACTOR_H_ #include <stddef.h> #include <string> #include <vector> class GURL; namespace safe_browsing { class FeatureMap; class PhishingUrlFeatureExtractor { … }; } // namespace safe_browsing #endif // COMPONENTS_SAFE_BROWSING_CONTENT_RENDERER_PHISHING_CLASSIFIER_PHISHING_URL_FEATURE_EXTRACTOR_H_