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/enterprise_oauth_enrollment_scr
een_handler.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/enterprise_oauth_enrollment_scr
een_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/callback.h" | 11 #include "base/callback.h" |
12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
13 #include "chrome/browser/browsing_data/browsing_data_helper.h" | 13 #include "chrome/browser/browsing_data/browsing_data_helper.h" |
14 #include "chrome/browser/browsing_data/browsing_data_remover.h" | 14 #include "chrome/browser/browsing_data/browsing_data_remover.h" |
15 #include "chrome/browser/net/gaia/gaia_oauth_fetcher.h" | 15 #include "chrome/browser/net/gaia/gaia_oauth_fetcher.h" |
16 #include "chrome/browser/policy/message_util.h" | 16 #include "chrome/browser/policy/cloud/message_util.h" |
17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
18 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" | 18 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
19 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.h" |
20 #include "google_apis/gaia/gaia_auth_util.h" | 20 #include "google_apis/gaia/gaia_auth_util.h" |
21 #include "google_apis/gaia/gaia_constants.h" | 21 #include "google_apis/gaia/gaia_constants.h" |
22 #include "google_apis/gaia/gaia_switches.h" | 22 #include "google_apis/gaia/gaia_switches.h" |
23 #include "google_apis/gaia/gaia_urls.h" | 23 #include "google_apis/gaia/gaia_urls.h" |
24 #include "google_apis/gaia/google_service_auth_error.h" | 24 #include "google_apis/gaia/google_service_auth_error.h" |
25 #include "grit/chromium_strings.h" | 25 #include "grit/chromium_strings.h" |
26 #include "grit/generated_resources.h" | 26 #include "grit/generated_resources.h" |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 screen_data.SetBoolean("is_auto_enrollment", is_auto_enrollment_); | 521 screen_data.SetBoolean("is_auto_enrollment", is_auto_enrollment_); |
522 if (!test_email_.empty()) { | 522 if (!test_email_.empty()) { |
523 screen_data.SetString("test_email", test_email_); | 523 screen_data.SetString("test_email", test_email_); |
524 screen_data.SetString("test_password", test_password_); | 524 screen_data.SetString("test_password", test_password_); |
525 } | 525 } |
526 | 526 |
527 ShowScreen(OobeUI::kScreenOobeEnrollment, &screen_data); | 527 ShowScreen(OobeUI::kScreenOobeEnrollment, &screen_data); |
528 } | 528 } |
529 | 529 |
530 } // namespace chromeos | 530 } // namespace chromeos |
OLD | NEW |