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 3484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3508 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); | 3508 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); |
3509 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); | 3509 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); |
3510 signin_helper_->StartWalletCookieValueFetch(); | 3510 signin_helper_->StartWalletCookieValueFetch(); |
3511 | 3511 |
3512 username_fetcher_.reset( | 3512 username_fetcher_.reset( |
3513 new wallet::WalletSigninHelper(this, request_context)); | 3513 new wallet::WalletSigninHelper(this, request_context)); |
3514 username_fetcher_->StartUserNameFetch(); | 3514 username_fetcher_->StartUserNameFetch(); |
3515 } | 3515 } |
3516 | 3516 |
3517 } // namespace autofill | 3517 } // namespace autofill |
OLD | NEW |