| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/autofill/autofill_dialog_controller_impl.h" | 5 #include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "apps/native_app_window.h" | |
| 12 #include "apps/shell_window.h" | 11 #include "apps/shell_window.h" |
| 13 #include "apps/shell_window_registry.h" | 12 #include "apps/shell_window_registry.h" |
| 13 #include "apps/ui/native_app_window.h" |
| 14 #include "base/base64.h" | 14 #include "base/base64.h" |
| 15 #include "base/bind.h" | 15 #include "base/bind.h" |
| 16 #include "base/i18n/case_conversion.h" | 16 #include "base/i18n/case_conversion.h" |
| 17 #include "base/i18n/rtl.h" | 17 #include "base/i18n/rtl.h" |
| 18 #include "base/logging.h" | 18 #include "base/logging.h" |
| 19 #include "base/prefs/pref_service.h" | 19 #include "base/prefs/pref_service.h" |
| 20 #include "base/rand_util.h" | 20 #include "base/rand_util.h" |
| 21 #include "base/strings/string_number_conversions.h" | 21 #include "base/strings/string_number_conversions.h" |
| 22 #include "base/strings/string_split.h" | 22 #include "base/strings/string_split.h" |
| 23 #include "base/strings/string_util.h" | 23 #include "base/strings/string_util.h" |
| (...skipping 3466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3490 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); | 3490 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); |
| 3491 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); | 3491 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); |
| 3492 signin_helper_->StartWalletCookieValueFetch(); | 3492 signin_helper_->StartWalletCookieValueFetch(); |
| 3493 | 3493 |
| 3494 username_fetcher_.reset( | 3494 username_fetcher_.reset( |
| 3495 new wallet::WalletSigninHelper(this, request_context)); | 3495 new wallet::WalletSigninHelper(this, request_context)); |
| 3496 username_fetcher_->StartUserNameFetch(); | 3496 username_fetcher_->StartUserNameFetch(); |
| 3497 } | 3497 } |
| 3498 | 3498 |
| 3499 } // namespace autofill | 3499 } // namespace autofill |
| OLD | NEW |