| Index: components/signin/core/browser/about_signin_internals.cc
|
| diff --git a/components/signin/core/browser/about_signin_internals.cc b/components/signin/core/browser/about_signin_internals.cc
|
| index 5d2d0f96315b10ed95ab99b9cce09a3c19a502cd..1e04c43504540798c82b1f29b5a12348da36a716 100644
|
| --- a/components/signin/core/browser/about_signin_internals.cc
|
| +++ b/components/signin/core/browser/about_signin_internals.cc
|
| @@ -15,6 +15,7 @@
|
| #include "components/signin/core/browser/signin_client.h"
|
| #include "components/signin/core/browser/signin_internals_util.h"
|
| #include "components/signin/core/browser/signin_manager.h"
|
| +#include "components/signin/core/common/profile_management_switches.h"
|
| #include "google_apis/gaia/gaia_constants.h"
|
|
|
| using base::Time;
|
| @@ -345,6 +346,10 @@ scoped_ptr<base::DictionaryValue> AboutSigninInternals::SigninStatus::ToValue(
|
| : "Signed In";
|
| AddSectionEntry(basic_info, "Chrome Version", product_version);
|
| AddSectionEntry(basic_info, "Signin Status", signin_status_string);
|
| + AddSectionEntry(basic_info, "Web Based Signin Enabled?",
|
| + switches::IsEnableWebBasedSignin() == TRUE ? "True" : "False");
|
| + AddSectionEntry(basic_info, "New Profile Management Enabled?",
|
| + switches::IsNewProfileManagement() == TRUE ? "True" : "False");
|
|
|
| // Only add username. SID and LSID have moved to tokens section.
|
| const std::string field =
|
|
|