| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/signin/core/browser/about_signin_internals.h" | 5 #include "components/signin/core/browser/about_signin_internals.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/debug/trace_event.h" | |
| 9 #include "base/hash.h" | 8 #include "base/hash.h" |
| 10 #include "base/i18n/time_formatting.h" | 9 #include "base/i18n/time_formatting.h" |
| 11 #include "base/logging.h" | 10 #include "base/logging.h" |
| 12 #include "base/prefs/pref_service.h" | 11 #include "base/prefs/pref_service.h" |
| 13 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 14 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
| 14 #include "base/trace_event/trace_event.h" |
| 15 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 15 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 16 #include "components/signin/core/browser/signin_client.h" | 16 #include "components/signin/core/browser/signin_client.h" |
| 17 #include "components/signin/core/browser/signin_internals_util.h" | 17 #include "components/signin/core/browser/signin_internals_util.h" |
| 18 #include "components/signin/core/browser/signin_manager.h" | 18 #include "components/signin/core/browser/signin_manager.h" |
| 19 #include "components/signin/core/common/profile_management_switches.h" | 19 #include "components/signin/core/common/profile_management_switches.h" |
| 20 #include "components/signin/core/common/signin_switches.h" | 20 #include "components/signin/core/common/signin_switches.h" |
| 21 #include "google_apis/gaia/gaia_auth_fetcher.h" | 21 #include "google_apis/gaia/gaia_auth_fetcher.h" |
| 22 #include "google_apis/gaia/gaia_auth_util.h" | 22 #include "google_apis/gaia/gaia_auth_util.h" |
| 23 #include "google_apis/gaia/gaia_constants.h" | 23 #include "google_apis/gaia/gaia_constants.h" |
| 24 #include "google_apis/gaia/gaia_urls.h" | 24 #include "google_apis/gaia/gaia_urls.h" |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 const std::vector<TokenInfo*>& tokens = it->second; | 492 const std::vector<TokenInfo*>& tokens = it->second; |
| 493 | 493 |
| 494 for (size_t i = 0; i < tokens.size(); ++i) { | 494 for (size_t i = 0; i < tokens.size(); ++i) { |
| 495 base::DictionaryValue* token_info = tokens[i]->ToValue(); | 495 base::DictionaryValue* token_info = tokens[i]->ToValue(); |
| 496 token_details->Append(token_info); | 496 token_details->Append(token_info); |
| 497 } | 497 } |
| 498 } | 498 } |
| 499 | 499 |
| 500 return signin_status.Pass(); | 500 return signin_status.Pass(); |
| 501 } | 501 } |
| OLD | NEW |