| 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 "chrome/browser/ui/webui/chromeos/login/enrollment_screen_handler.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/enrollment_screen_handler.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/message_loop/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "chrome/browser/browser_process.h" | 14 #include "chrome/browser/browser_process.h" |
| 15 #include "chrome/browser/browsing_data/browsing_data_helper.h" | 15 #include "chrome/browser/browsing_data/browsing_data_helper.h" |
| 16 #include "chrome/browser/browsing_data/browsing_data_remover.h" | 16 #include "chrome/browser/browsing_data/browsing_data_remover.h" |
| 17 #include "chrome/browser/chromeos/policy/policy_oauth2_token_fetcher.h" | 17 #include "chrome/browser/chromeos/policy/policy_oauth2_token_fetcher.h" |
| 18 #include "chrome/browser/policy/cloud/message_util.h" | |
| 19 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
| 20 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" | 19 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
| 20 #include "components/policy/core/browser/cloud/message_util.h" |
| 21 #include "content/public/browser/web_contents.h" | 21 #include "content/public/browser/web_contents.h" |
| 22 #include "google_apis/gaia/gaia_auth_fetcher.h" | 22 #include "google_apis/gaia/gaia_auth_fetcher.h" |
| 23 #include "google_apis/gaia/gaia_auth_util.h" | 23 #include "google_apis/gaia/gaia_auth_util.h" |
| 24 #include "google_apis/gaia/gaia_constants.h" | 24 #include "google_apis/gaia/gaia_constants.h" |
| 25 #include "google_apis/gaia/gaia_urls.h" | 25 #include "google_apis/gaia/gaia_urls.h" |
| 26 #include "google_apis/gaia/google_service_auth_error.h" | 26 #include "google_apis/gaia/google_service_auth_error.h" |
| 27 #include "grit/chromium_strings.h" | 27 #include "grit/chromium_strings.h" |
| 28 #include "grit/generated_resources.h" | 28 #include "grit/generated_resources.h" |
| 29 #include "ui/base/l10n/l10n_util.h" | 29 #include "ui/base/l10n/l10n_util.h" |
| 30 | 30 |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 DictionaryValue screen_data; | 388 DictionaryValue screen_data; |
| 389 screen_data.SetString("signin_url", kGaiaExtStartPage); | 389 screen_data.SetString("signin_url", kGaiaExtStartPage); |
| 390 screen_data.SetString("gaiaUrl", GaiaUrls::GetInstance()->gaia_url().spec()); | 390 screen_data.SetString("gaiaUrl", GaiaUrls::GetInstance()->gaia_url().spec()); |
| 391 screen_data.SetBoolean("is_auto_enrollment", is_auto_enrollment_); | 391 screen_data.SetBoolean("is_auto_enrollment", is_auto_enrollment_); |
| 392 screen_data.SetBoolean("prevent_cancellation", !can_exit_enrollment_); | 392 screen_data.SetBoolean("prevent_cancellation", !can_exit_enrollment_); |
| 393 | 393 |
| 394 ShowScreen(OobeUI::kScreenOobeEnrollment, &screen_data); | 394 ShowScreen(OobeUI::kScreenOobeEnrollment, &screen_data); |
| 395 } | 395 } |
| 396 | 396 |
| 397 } // namespace chromeos | 397 } // namespace chromeos |
| OLD | NEW |