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

Unified Diff: content/public/browser/access_token_store.h

Issue 102593002: Convert string16 to base::string16 in content. (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 | « content/port/browser/web_contents_view_port.h ('k') | content/public/browser/browser_child_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/access_token_store.h
diff --git a/content/public/browser/access_token_store.h b/content/public/browser/access_token_store.h
index 0af3fe788823d5266e932b1bf7ba384f94b411a2..bd130144c6c41b7421ebdf16767fa99d03690783 100644
--- a/content/public/browser/access_token_store.h
+++ b/content/public/browser/access_token_store.h
@@ -33,7 +33,7 @@ namespace content {
class AccessTokenStore : public base::RefCountedThreadSafe<AccessTokenStore> {
public:
// Map of server URLs to associated access token.
- typedef std::map<GURL, string16> AccessTokenSet;
+ typedef std::map<GURL, base::string16> AccessTokenSet;
typedef base::Callback<void(AccessTokenSet, net::URLRequestContextGetter*)>
LoadAccessTokensCallbackType;
@@ -47,7 +47,7 @@ class AccessTokenStore : public base::RefCountedThreadSafe<AccessTokenStore> {
const LoadAccessTokensCallbackType& callback) = 0;
virtual void SaveAccessToken(
- const GURL& server_url, const string16& access_token) = 0;
+ const GURL& server_url, const base::string16& access_token) = 0;
protected:
friend class base::RefCountedThreadSafe<AccessTokenStore>;
« no previous file with comments | « content/port/browser/web_contents_view_port.h ('k') | content/public/browser/browser_child_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698