| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/ui/webui/sync_setup_handler.h" | 5 #include "chrome/browser/ui/webui/sync_setup_handler.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/json/json_reader.h" | 9 #include "base/json/json_reader.h" |
| 10 #include "base/json/json_writer.h" | 10 #include "base/json/json_writer.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "chrome/browser/google/google_util.h" | 14 #include "chrome/browser/google/google_util.h" |
| 15 #include "chrome/browser/prefs/pref_service.h" | 15 #include "chrome/browser/prefs/pref_service.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/browser/profiles/profile_info_cache.h" | 17 #include "chrome/browser/profiles/profile_info_cache.h" |
| 18 #include "chrome/browser/profiles/profile_manager.h" | 18 #include "chrome/browser/profiles/profile_manager.h" |
| 19 #include "chrome/browser/profiles/profile_metrics.h" | 19 #include "chrome/browser/profiles/profile_metrics.h" |
| 20 #include "chrome/browser/sync/profile_sync_service.h" | 20 #include "chrome/browser/sync/profile_sync_service.h" |
| 21 #include "chrome/browser/sync/protocol/service_constants.h" | 21 #include "chrome/browser/sync/protocol/service_constants.h" |
| 22 #include "chrome/browser/sync/signin_manager.h" | 22 #include "chrome/browser/sync/signin_manager.h" |
| 23 #include "chrome/browser/sync/sync_setup_flow.h" | 23 #include "chrome/browser/sync/sync_setup_flow.h" |
| 24 #include "chrome/browser/sync/util/oauth.h" | 24 #include "chrome/browser/sync/util/oauth.h" |
| 25 #include "chrome/browser/ui/browser_list.h" | 25 #include "chrome/browser/ui/browser_list.h" |
| 26 #include "chrome/browser/ui/webui/sync_promo_trial.h" | 26 #include "chrome/browser/ui/webui/sync_promo/sync_promo_trial.h" |
| 27 #include "chrome/browser/ui/webui/sync_promo_ui.h" | 27 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" |
| 28 #include "chrome/browser/ui/webui/user_selectable_sync_type.h" | 28 #include "chrome/browser/ui/webui/user_selectable_sync_type.h" |
| 29 #include "chrome/common/net/gaia/gaia_constants.h" | 29 #include "chrome/common/net/gaia/gaia_constants.h" |
| 30 #include "chrome/common/pref_names.h" | 30 #include "chrome/common/pref_names.h" |
| 31 #include "chrome/common/url_constants.h" | 31 #include "chrome/common/url_constants.h" |
| 32 #include "content/browser/tab_contents/tab_contents.h" | 32 #include "content/browser/tab_contents/tab_contents.h" |
| 33 #include "grit/chromium_strings.h" | 33 #include "grit/chromium_strings.h" |
| 34 #include "grit/generated_resources.h" | 34 #include "grit/generated_resources.h" |
| 35 #include "grit/locale_settings.h" | 35 #include "grit/locale_settings.h" |
| 36 #include "ui/base/l10n/l10n_util.h" | 36 #include "ui/base/l10n/l10n_util.h" |
| 37 | 37 |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 } | 768 } |
| 769 | 769 |
| 770 void SyncSetupHandler::ShowLoginErrorMessage(const string16& error_message) { | 770 void SyncSetupHandler::ShowLoginErrorMessage(const string16& error_message) { |
| 771 DictionaryValue args; | 771 DictionaryValue args; |
| 772 Profile* profile = Profile::FromWebUI(web_ui_); | 772 Profile* profile = Profile::FromWebUI(web_ui_); |
| 773 ProfileSyncService* service = profile->GetProfileSyncService(); | 773 ProfileSyncService* service = profile->GetProfileSyncService(); |
| 774 SyncSetupFlow::GetArgsForGaiaLogin(service, &args); | 774 SyncSetupFlow::GetArgsForGaiaLogin(service, &args); |
| 775 args.SetString("error_message", error_message); | 775 args.SetString("error_message", error_message); |
| 776 ShowGaiaLogin(args); | 776 ShowGaiaLogin(args); |
| 777 } | 777 } |
| OLD | NEW |