Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc

Issue 271793003: components: Extract pref_registry component out of user_prefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h" 56 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h"
57 #include "components/autofill/core/browser/autofill_country.h" 57 #include "components/autofill/core/browser/autofill_country.h"
58 #include "components/autofill/core/browser/autofill_data_model.h" 58 #include "components/autofill/core/browser/autofill_data_model.h"
59 #include "components/autofill/core/browser/autofill_manager.h" 59 #include "components/autofill/core/browser/autofill_manager.h"
60 #include "components/autofill/core/browser/autofill_type.h" 60 #include "components/autofill/core/browser/autofill_type.h"
61 #include "components/autofill/core/browser/personal_data_manager.h" 61 #include "components/autofill/core/browser/personal_data_manager.h"
62 #include "components/autofill/core/browser/phone_number_i18n.h" 62 #include "components/autofill/core/browser/phone_number_i18n.h"
63 #include "components/autofill/core/browser/validation.h" 63 #include "components/autofill/core/browser/validation.h"
64 #include "components/autofill/core/common/autofill_pref_names.h" 64 #include "components/autofill/core/common/autofill_pref_names.h"
65 #include "components/autofill/core/common/form_data.h" 65 #include "components/autofill/core/common/form_data.h"
66 #include "components/user_prefs/pref_registry_syncable.h" 66 #include "components/pref_registry/pref_registry_syncable.h"
67 #include "content/public/browser/browser_thread.h" 67 #include "content/public/browser/browser_thread.h"
68 #include "content/public/browser/geolocation_provider.h" 68 #include "content/public/browser/geolocation_provider.h"
69 #include "content/public/browser/navigation_controller.h" 69 #include "content/public/browser/navigation_controller.h"
70 #include "content/public/browser/navigation_details.h" 70 #include "content/public/browser/navigation_details.h"
71 #include "content/public/browser/navigation_entry.h" 71 #include "content/public/browser/navigation_entry.h"
72 #include "content/public/browser/notification_service.h" 72 #include "content/public/browser/notification_service.h"
73 #include "content/public/browser/notification_types.h" 73 #include "content/public/browser/notification_types.h"
74 #include "content/public/browser/render_view_host.h" 74 #include "content/public/browser/render_view_host.h"
75 #include "content/public/browser/web_contents.h" 75 #include "content/public/browser/web_contents.h"
76 #include "content/public/common/url_constants.h" 76 #include "content/public/common/url_constants.h"
(...skipping 4023 matching lines...) Expand 10 before | Expand all | Expand 10 after
4100 view_->UpdateButtonStrip(); 4100 view_->UpdateButtonStrip();
4101 } 4101 }
4102 4102
4103 void AutofillDialogControllerImpl::FetchWalletCookie() { 4103 void AutofillDialogControllerImpl::FetchWalletCookie() {
4104 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); 4104 net::URLRequestContextGetter* request_context = profile_->GetRequestContext();
4105 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); 4105 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context));
4106 signin_helper_->StartWalletCookieValueFetch(); 4106 signin_helper_->StartWalletCookieValueFetch();
4107 } 4107 }
4108 4108
4109 } // namespace autofill 4109 } // namespace autofill
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/chrome_launcher_prefs.cc ('k') | chrome/browser/ui/autofill/generated_credit_card_bubble_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698