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

Unified Diff: chrome/renderer/safe_browsing/phishing_classifier.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.h
diff --git a/chrome/renderer/safe_browsing/phishing_classifier.h b/chrome/renderer/safe_browsing/phishing_classifier.h
index 53dc2300b80ad9d536166046dee9969804eaadb3..66e59695e4eb66d93af52ea5716174632d80acc2 100644
--- a/chrome/renderer/safe_browsing/phishing_classifier.h
+++ b/chrome/renderer/safe_browsing/phishing_classifier.h
@@ -83,7 +83,7 @@ class PhishingClassifier {
//
// It is an error to call BeginClassification if the classifier is not yet
// ready.
- virtual void BeginClassification(const string16* page_text,
+ virtual void BeginClassification(const base::string16* page_text,
const DoneCallback& callback);
// Called by the RenderView (on the render thread) when a page is unloading
@@ -135,7 +135,7 @@ class PhishingClassifier {
// State for any in-progress extraction.
scoped_ptr<FeatureMap> features_;
- const string16* page_text_; // owned by the caller
+ const base::string16* page_text_; // owned by the caller
DoneCallback done_callback_;
// Used in scheduling BeginFeatureExtraction tasks.
« no previous file with comments | « chrome/renderer/plugins/chrome_plugin_placeholder.cc ('k') | chrome/renderer/safe_browsing/phishing_classifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698