• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "google_apis/gaia/gaia_auth_consumer.h"
6 
ClientLoginResult()7 GaiaAuthConsumer::ClientLoginResult::ClientLoginResult()
8     : two_factor(false) {
9 }
10 
ClientLoginResult(const std::string & new_sid,const std::string & new_lsid,const std::string & new_token,const std::string & new_data)11 GaiaAuthConsumer::ClientLoginResult::ClientLoginResult(
12     const std::string& new_sid,
13     const std::string& new_lsid,
14     const std::string& new_token,
15     const std::string& new_data)
16     : sid(new_sid),
17       lsid(new_lsid),
18       token(new_token),
19       data(new_data),
20       two_factor(false) {}
21 
~ClientLoginResult()22 GaiaAuthConsumer::ClientLoginResult::~ClientLoginResult() {}
23 
operator ==(const ClientLoginResult & b) const24 bool GaiaAuthConsumer::ClientLoginResult::operator==(
25     const ClientLoginResult &b) const {
26   return sid == b.sid &&
27       lsid == b.lsid &&
28       token == b.token &&
29       data == b.data &&
30       two_factor == b.two_factor;
31 }
32 
ClientOAuthResult()33 GaiaAuthConsumer::ClientOAuthResult::ClientOAuthResult()
34     : expires_in_secs(0) {}
35 
ClientOAuthResult(const std::string & new_refresh_token,const std::string & new_access_token,int new_expires_in_secs)36 GaiaAuthConsumer::ClientOAuthResult::ClientOAuthResult(
37     const std::string& new_refresh_token,
38     const std::string& new_access_token,
39     int new_expires_in_secs)
40     : refresh_token(new_refresh_token),
41       access_token(new_access_token),
42       expires_in_secs(new_expires_in_secs) {}
43 
~ClientOAuthResult()44 GaiaAuthConsumer::ClientOAuthResult::~ClientOAuthResult() {}
45 
operator ==(const ClientOAuthResult & b) const46 bool GaiaAuthConsumer::ClientOAuthResult::operator==(
47     const ClientOAuthResult &b) const {
48   return refresh_token == b.refresh_token &&
49       access_token == b.access_token &&
50       expires_in_secs == b.expires_in_secs;
51 }
52