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

Unified Diff: chrome/browser/sync/util/user_settings_posix.cc

Issue 211019: Fix compiling of sync on linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months 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 | « chrome/browser/sync/util/user_settings.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/util/user_settings_posix.cc
===================================================================
--- chrome/browser/sync/util/user_settings_posix.cc (revision 26817)
+++ chrome/browser/sync/util/user_settings_posix.cc (working copy)
@@ -12,14 +12,16 @@
service_tokens_.clear();
}
-void UserSettings::SetAuthTokenForService(const string& email,
- const string& service_name, const string& long_lived_service_token) {
+void UserSettings::SetAuthTokenForService(
+ const std::string& email,
+ const std::string& service_name,
+ const std::string& long_lived_service_token) {
service_tokens_[service_name] = long_lived_service_token;
}
-bool UserSettings::GetLastUserAndServiceToken(const string& service_name,
- string* username,
- string* service_token) {
+bool UserSettings::GetLastUserAndServiceToken(const std::string& service_name,
+ std::string* username,
+ std::string* service_token) {
ServiceTokenMap::const_iterator iter = service_tokens_.find(service_name);
if (iter != service_tokens_.end()) {
« no previous file with comments | « chrome/browser/sync/util/user_settings.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698