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 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_H_
6 #define COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_H_
10 // Information about a specific account.
15 std::string account_id
; // The account ID used by OAuth2TokenService.
18 std::string full_name
;
19 std::string given_name
;
20 std::string hosted_domain
;
22 std::string picture_url
;
23 bool is_child_account
;
28 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_H_