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

Unified Diff: chrome/service/cloud_print/cloud_print_token_store.cc

Issue 8387011: Chrome proxy refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
Index: chrome/service/cloud_print/cloud_print_token_store.cc
===================================================================
--- chrome/service/cloud_print/cloud_print_token_store.cc (revision 107156)
+++ chrome/service/cloud_print/cloud_print_token_store.cc (working copy)
@@ -16,7 +16,7 @@
return lazy_tls.Pointer()->Get();
}
-CloudPrintTokenStore::CloudPrintTokenStore() : token_is_oauth_(false) {
+CloudPrintTokenStore::CloudPrintTokenStore() {
lazy_tls.Pointer()->Set(this);
}
@@ -24,8 +24,7 @@
lazy_tls.Pointer()->Set(NULL);
}
-void CloudPrintTokenStore::SetToken(const std::string& token, bool is_oauth) {
+void CloudPrintTokenStore::SetToken(const std::string& token) {
DCHECK(CalledOnValidThread());
token_ = token;
- token_is_oauth_ = is_oauth;
}
« no previous file with comments | « chrome/service/cloud_print/cloud_print_token_store.h ('k') | chrome/service/cloud_print/cloud_print_token_store_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698