diff options
author | guohui@chromium.org <guohui@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 01:49:21 +0000 |
---|---|---|
committer | guohui@chromium.org <guohui@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 01:49:21 +0000 |
commit | 9d61151c0382607f852d08721b92673ae0c267a3 (patch) | |
tree | adc7b26fa94050036397cc4341d805259d3d86e7 /chrome/browser/profiles/profile_io_data.h | |
parent | 165f71d183d34d485e84912a59a6cb08815c90ba (diff) | |
download | chromium_src-9d61151c0382607f852d08721b92673ae0c267a3.zip chromium_src-9d61151c0382607f852d08721b92673ae0c267a3.tar.gz chromium_src-9d61151c0382607f852d08721b92673ae0c267a3.tar.bz2 |
Add x-chrome-connnected:focus_id header to drive
For background please refer to the design doc https://docs.google.com/a/google.com/document/d/1KTTS3fOddY2nxq8scd05SpNFP3I4WsgfQzD0nnZm2zg/edit#heading=h.tfzj12peb2h
BUG=293733
Review URL: https://codereview.chromium.org/102183002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239946 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles/profile_io_data.h')
-rw-r--r-- | chrome/browser/profiles/profile_io_data.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h index d68adde..e832683 100644 --- a/chrome/browser/profiles/profile_io_data.h +++ b/chrome/browser/profiles/profile_io_data.h @@ -127,6 +127,10 @@ class ProfileIOData { return signin_names_.get(); } + StringPrefMember* google_services_account_id() const { + return &google_services_user_account_id_; + } + StringPrefMember* google_services_username() const { return &google_services_username_; } @@ -457,6 +461,7 @@ class ProfileIOData { // Provides access to the email addresses of all signed in profiles. mutable scoped_ptr<SigninNamesOnIOThread> signin_names_; + mutable StringPrefMember google_services_user_account_id_; mutable StringPrefMember google_services_username_; mutable StringPrefMember google_services_username_pattern_; mutable BooleanPrefMember reverse_autologin_enabled_; |