| Index: chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc
|
| diff --git a/chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc b/chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc
|
| index c848cd32b0af613aa8097b6c2af42d93c9f16f5a..4e5ac673c198d5b2905ef1ff769e7a3a67b14376 100644
|
| --- a/chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc
|
| +++ b/chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc
|
| @@ -67,7 +67,7 @@ struct PhishingTermFeatureExtractor::ExtractionState {
|
| // The number of iterations we've done for the current extraction.
|
| int num_iterations;
|
|
|
| - ExtractionState(const string16& text, base::TimeTicks start_time_ticks)
|
| + ExtractionState(const base::string16& text, base::TimeTicks start_time_ticks)
|
| : position(-1),
|
| position_initialized(false),
|
| start_time(start_time_ticks),
|
| @@ -113,7 +113,7 @@ PhishingTermFeatureExtractor::~PhishingTermFeatureExtractor() {
|
| }
|
|
|
| void PhishingTermFeatureExtractor::ExtractFeatures(
|
| - const string16* page_text,
|
| + const base::string16* page_text,
|
| FeatureMap* features,
|
| const DoneCallback& done_callback) {
|
| // The RenderView should have called CancelPendingExtraction() before
|
|
|