| 38 | namespace fs { |
| 39 | |
| 40 | bool GcsCredentials::Equals(const GcsCredentials& other) const { |
| 41 | if (holder_->credentials == other.holder_->credentials) { |
| 42 | return true; |
| 43 | } |
| 44 | return anonymous_ == other.anonymous_ && access_token_ == other.access_token_ && |
| 45 | expiration_ == other.expiration_ && |
| 46 | json_credentials_ == other.json_credentials_ && |
| 47 | target_service_account_ == other.target_service_account_; |
| 48 | } |
| 49 | |
| 50 | namespace { |
| 51 |