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

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

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.h
diff --git a/chrome/renderer/safe_browsing/phishing_term_feature_extractor.h b/chrome/renderer/safe_browsing/phishing_term_feature_extractor.h
index 0b8478f275a4337ae575464b4ca46666be6796ef..cef13ca7df8a370168fa9b1c2c15c90d523e42c4 100644
--- a/chrome/renderer/safe_browsing/phishing_term_feature_extractor.h
+++ b/chrome/renderer/safe_browsing/phishing_term_feature_extractor.h
@@ -70,7 +70,7 @@ class PhishingTermFeatureExtractor {
// |page_text| and |features| are owned by the caller, and must not be
// destroyed until either |done_callback| is run or
// CancelPendingExtraction() is called.
- void ExtractFeatures(const string16* page_text,
+ void ExtractFeatures(const base::string16* page_text,
FeatureMap* features,
const DoneCallback& done_callback);
@@ -146,7 +146,7 @@ class PhishingTermFeatureExtractor {
FeatureExtractorClock* clock_;
// The output parameters from the most recent call to ExtractFeatures().
- const string16* page_text_; // The caller keeps ownership of this.
+ const base::string16* page_text_; // The caller keeps ownership of this.
FeatureMap* features_; // The caller keeps ownership of this.
DoneCallback done_callback_;

Powered by Google App Engine
This is Rietveld 408576698