1 // Copyright 2015 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.
5 #include "components/signin/core/browser/account_info.h"
7 AccountInfo::AccountInfo() {}
8 AccountInfo::~AccountInfo() {}
10 bool AccountInfo::IsValid() const {
11 return !account_id
.empty() && !email
.empty() && !gaia
.empty() &&
12 !hosted_domain
.empty() && !full_name
.empty() && !given_name
.empty() &&
13 !locale
.empty() && !picture_url
.empty();