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

Unified Diff: chrome/renderer/safe_browsing/phishing_classifier_delegate.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_classifier_delegate.h
diff --git a/chrome/renderer/safe_browsing/phishing_classifier_delegate.h b/chrome/renderer/safe_browsing/phishing_classifier_delegate.h
index 018ff62e8aa282fabbfeac3a46d387909435fc58..9dda594d468d4d21fdef36347ceac5d263b2f8d8 100644
--- a/chrome/renderer/safe_browsing/phishing_classifier_delegate.h
+++ b/chrome/renderer/safe_browsing/phishing_classifier_delegate.h
@@ -51,7 +51,7 @@ class PhishingClassifierDelegate : public content::RenderViewObserver {
// conditions are met (see MaybeStartClassification for details).
// We ignore preliminary captures, since these happen before the page has
// finished loading.
- void PageCaptured(string16* page_text, bool preliminary_capture);
+ void PageCaptured(base::string16* page_text, bool preliminary_capture);
// RenderViewObserver implementation, public for testing.
@@ -127,7 +127,7 @@ class PhishingClassifierDelegate : public content::RenderViewObserver {
// there is no Scorer yet when OnNavigate is called, or the browser has not
// instructed us to classify the page, the page text will be cached until
// these conditions are met.
- string16 classifier_page_text_;
+ base::string16 classifier_page_text_;
// Tracks whether we have stored anything in classifier_page_text_ for the
// most recent load. We use this to distinguish empty text from cases where

Powered by Google App Engine
This is Rietveld 408576698