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

Unified Diff: android_webview/browser/find_helper.h

Issue 100453010: Add base:: to string16s in android_webview/. (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
« no previous file with comments | « android_webview/browser/aw_login_delegate.cc ('k') | android_webview/browser/find_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/find_helper.h
diff --git a/android_webview/browser/find_helper.h b/android_webview/browser/find_helper.h
index 7662ec5a36a81b9e5d327ca3702a066a1f74a19b..eabf19750c45c42b7461581232137615559afa7d 100644
--- a/android_webview/browser/find_helper.h
+++ b/android_webview/browser/find_helper.h
@@ -32,7 +32,7 @@ class FindHelper : public content::WebContentsObserver {
void SetListener(Listener* listener);
// Asynchronous API.
- void FindAllAsync(const string16& search_string);
+ void FindAllAsync(const base::string16& search_string);
void HandleFindReply(int request_id,
int match_count,
int active_ordinal,
@@ -43,7 +43,7 @@ class FindHelper : public content::WebContentsObserver {
void ClearMatches();
private:
- void StartNewRequest(const string16& search_string);
+ void StartNewRequest(const base::string16& search_string);
void NotifyResults(int active_ordinal, int match_count, bool finished);
// Listener results are reported to.
@@ -59,7 +59,7 @@ class FindHelper : public content::WebContentsObserver {
int current_request_id_;
// Required by FindNext and the incremental find replies.
- string16 last_search_string_;
+ base::string16 last_search_string_;
int last_match_count_;
int last_active_ordinal_;
« no previous file with comments | « android_webview/browser/aw_login_delegate.cc ('k') | android_webview/browser/find_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698