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

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

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.h
===================================================================
--- chrome/service/cloud_print/cloud_print_token_store.h (revision 107156)
+++ chrome/service/cloud_print/cloud_print_token_store.h (working copy)
@@ -23,19 +23,14 @@
CloudPrintTokenStore();
~CloudPrintTokenStore();
- void SetToken(const std::string& token, bool is_oauth);
+ void SetToken(const std::string& token);
std::string token() const {
DCHECK(CalledOnValidThread());
return token_;
}
- bool token_is_oauth() const {
- DCHECK(CalledOnValidThread());
- return token_is_oauth_;
- }
private:
std::string token_;
- bool token_is_oauth_;
DISALLOW_COPY_AND_ASSIGN(CloudPrintTokenStore);
};
« no previous file with comments | « chrome/service/cloud_print/cloud_print_proxy_backend.cc ('k') | chrome/service/cloud_print/cloud_print_token_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698