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

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

Issue 601733002: Rename component_resources.h to components_resources.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: output_name hack Created 6 years, 3 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
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 #include "content/public/browser/navigation_details.h" 71 #include "content/public/browser/navigation_details.h"
72 #include "content/public/browser/navigation_entry.h" 72 #include "content/public/browser/navigation_entry.h"
73 #include "content/public/browser/notification_service.h" 73 #include "content/public/browser/notification_service.h"
74 #include "content/public/browser/notification_types.h" 74 #include "content/public/browser/notification_types.h"
75 #include "content/public/browser/render_view_host.h" 75 #include "content/public/browser/render_view_host.h"
76 #include "content/public/browser/web_contents.h" 76 #include "content/public/browser/web_contents.h"
77 #include "content/public/common/url_constants.h" 77 #include "content/public/common/url_constants.h"
78 #include "extensions/browser/app_window/app_window.h" 78 #include "extensions/browser/app_window/app_window.h"
79 #include "extensions/browser/app_window/app_window_registry.h" 79 #include "extensions/browser/app_window/app_window_registry.h"
80 #include "extensions/browser/app_window/native_app_window.h" 80 #include "extensions/browser/app_window/native_app_window.h"
81 #include "grit/component_scaled_resources.h" 81 #include "grit/components_scaled_resources.h"
82 #include "grit/components_strings.h" 82 #include "grit/components_strings.h"
83 #include "grit/platform_locale_settings.h" 83 #include "grit/platform_locale_settings.h"
84 #include "grit/theme_resources.h" 84 #include "grit/theme_resources.h"
85 #include "net/cert/cert_status_flags.h" 85 #include "net/cert/cert_status_flags.h"
86 #include "third_party/libaddressinput/chromium/chrome_metadata_source.h" 86 #include "third_party/libaddressinput/chromium/chrome_metadata_source.h"
87 #include "third_party/libaddressinput/chromium/chrome_storage_impl.h" 87 #include "third_party/libaddressinput/chromium/chrome_storage_impl.h"
88 #include "third_party/libaddressinput/messages.h" 88 #include "third_party/libaddressinput/messages.h"
89 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_da ta.h" 89 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_da ta.h"
90 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_fi eld.h" 90 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_fi eld.h"
91 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_pr oblem.h" 91 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_pr oblem.h"
(...skipping 4065 matching lines...) Expand 10 before | Expand all | Expand 10 after
4157 view_->UpdateButtonStrip(); 4157 view_->UpdateButtonStrip();
4158 } 4158 }
4159 4159
4160 void AutofillDialogControllerImpl::FetchWalletCookie() { 4160 void AutofillDialogControllerImpl::FetchWalletCookie() {
4161 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); 4161 net::URLRequestContextGetter* request_context = profile_->GetRequestContext();
4162 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); 4162 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context));
4163 signin_helper_->StartWalletCookieValueFetch(); 4163 signin_helper_->StartWalletCookieValueFetch();
4164 } 4164 }
4165 4165
4166 } // namespace autofill 4166 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698