| 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/chromeos/login/existing_user_controller.h" | 5 #include "chrome/browser/chromeos/login/existing_user_controller.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 #include "components/signin/core/browser/signin_client.h" | 70 #include "components/signin/core/browser/signin_client.h" |
| 71 #include "components/user_manager/known_user.h" | 71 #include "components/user_manager/known_user.h" |
| 72 #include "components/user_manager/user_manager.h" | 72 #include "components/user_manager/user_manager.h" |
| 73 #include "components/user_manager/user_names.h" | 73 #include "components/user_manager/user_names.h" |
| 74 #include "components/user_manager/user_type.h" | 74 #include "components/user_manager/user_type.h" |
| 75 #include "components/version_info/version_info.h" | 75 #include "components/version_info/version_info.h" |
| 76 #include "content/public/browser/browser_thread.h" | 76 #include "content/public/browser/browser_thread.h" |
| 77 #include "content/public/browser/notification_service.h" | 77 #include "content/public/browser/notification_service.h" |
| 78 #include "content/public/browser/notification_types.h" | 78 #include "content/public/browser/notification_types.h" |
| 79 #include "content/public/browser/storage_partition.h" | 79 #include "content/public/browser/storage_partition.h" |
| 80 #include "content/public/browser/user_metrics.h" | |
| 81 #include "google_apis/gaia/gaia_auth_util.h" | 80 #include "google_apis/gaia/gaia_auth_util.h" |
| 82 #include "google_apis/gaia/google_service_auth_error.h" | 81 #include "google_apis/gaia/google_service_auth_error.h" |
| 83 #include "net/http/http_auth_cache.h" | 82 #include "net/http/http_auth_cache.h" |
| 84 #include "net/http/http_network_session.h" | 83 #include "net/http/http_network_session.h" |
| 85 #include "net/http/http_transaction_factory.h" | 84 #include "net/http/http_transaction_factory.h" |
| 86 #include "net/url_request/url_request_context.h" | 85 #include "net/url_request/url_request_context.h" |
| 87 #include "net/url_request/url_request_context_getter.h" | 86 #include "net/url_request/url_request_context_getter.h" |
| 88 #include "ui/accessibility/ax_enums.h" | 87 #include "ui/accessibility/ax_enums.h" |
| 89 #include "ui/base/l10n/l10n_util.h" | 88 #include "ui/base/l10n/l10n_util.h" |
| 90 #include "ui/views/widget/widget.h" | 89 #include "ui/views/widget/widget.h" |
| (...skipping 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1385 login_display_->ShowUnrecoverableCrypthomeErrorDialog(); | 1384 login_display_->ShowUnrecoverableCrypthomeErrorDialog(); |
| 1386 } | 1385 } |
| 1387 | 1386 |
| 1388 void ExistingUserController::ClearRecordedNames() { | 1387 void ExistingUserController::ClearRecordedNames() { |
| 1389 display_email_.clear(); | 1388 display_email_.clear(); |
| 1390 display_name_.clear(); | 1389 display_name_.clear(); |
| 1391 given_name_.clear(); | 1390 given_name_.clear(); |
| 1392 } | 1391 } |
| 1393 | 1392 |
| 1394 } // namespace chromeos | 1393 } // namespace chromeos |
| OLD | NEW |