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

Unified Diff: chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc

Issue 105493002: Use base namespace for string16 in chrome/renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698