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

Unified Diff: chrome/common/net/gaia/gaia_authenticator.cc

Issue 10855075: Clean-up inline members of nested classes (chrome/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/common/net/gaia/gaia_authenticator.h ('k') | chrome/service/cloud_print/cloud_print_url_fetcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/net/gaia/gaia_authenticator.cc
diff --git a/chrome/common/net/gaia/gaia_authenticator.cc b/chrome/common/net/gaia/gaia_authenticator.cc
index a588fd3efa13af75010b95801bdedf35728dd2d4..af12b7a1b97a277041fcd72f8078195ffefb29a2 100644
--- a/chrome/common/net/gaia/gaia_authenticator.cc
+++ b/chrome/common/net/gaia/gaia_authenticator.cc
@@ -27,6 +27,20 @@ static const char kGetUserInfoPath[] = "/accounts/GetUserInfo";
GaiaAuthenticator::AuthResults::AuthResults() : auth_error(None) {}
+GaiaAuthenticator::AuthResults::AuthResults(const AuthResults& other)
+ : email(other.email),
+ password(other.password),
+ sid(other.sid),
+ lsid(other.lsid),
+ auth_token(other.auth_token),
+ primary_email(other.primary_email),
+ error_msg(other.error_msg),
+ auth_error(other.auth_error),
+ auth_error_url(other.auth_error_url),
+ captcha_token(other.captcha_token),
+ captcha_url(other.captcha_url) {
+}
+
GaiaAuthenticator::AuthResults::~AuthResults() {}
GaiaAuthenticator::AuthParams::AuthParams() : authenticator(NULL),
« no previous file with comments | « chrome/common/net/gaia/gaia_authenticator.h ('k') | chrome/service/cloud_print/cloud_print_url_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698