Roll src/third_party/WebKit 3aea697:d9c6159 (svn 201973:201974)
[chromium-blink-merge.git] / components / signin / core / browser / account_info.cc
bloba3cd4ebba2363f92bf55d1da48863a3ac0a13bed
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();