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

Side by Side Diff: chrome/browser/ui/webui/options/autofill_options_handler.cc

Issue 15949029: Use a direct include of utf_string_conversions.h in chrome/browser/ui/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 (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/ui/webui/options/autofill_options_handler.h" 5 #include "chrome/browser/ui/webui/options/autofill_options_handler.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/guid.h" 11 #include "base/guid.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/string16.h" 13 #include "base/string16.h"
14 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
15 #include "base/utf_string_conversions.h" 15 #include "base/strings/utf_string_conversions.h"
16 #include "base/values.h" 16 #include "base/values.h"
17 #include "chrome/browser/autofill/personal_data_manager_factory.h" 17 #include "chrome/browser/autofill/personal_data_manager_factory.h"
18 #include "chrome/browser/browser_process.h" 18 #include "chrome/browser/browser_process.h"
19 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/ui/autofill/country_combobox_model.h" 20 #include "chrome/browser/ui/autofill/country_combobox_model.h"
21 #include "chrome/common/url_constants.h" 21 #include "chrome/common/url_constants.h"
22 #include "components/autofill/browser/autofill_country.h" 22 #include "components/autofill/browser/autofill_country.h"
23 #include "components/autofill/browser/autofill_profile.h" 23 #include "components/autofill/browser/autofill_profile.h"
24 #include "components/autofill/browser/credit_card.h" 24 #include "components/autofill/browser/credit_card.h"
25 #include "components/autofill/browser/personal_data_manager.h" 25 #include "components/autofill/browser/personal_data_manager.h"
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 598
599 web_ui()->CallJavascriptFunction( 599 web_ui()->CallJavascriptFunction(
600 "AutofillEditAddressOverlay.setValidatedPhoneNumbers", *list_value); 600 "AutofillEditAddressOverlay.setValidatedPhoneNumbers", *list_value);
601 } 601 }
602 602
603 bool AutofillOptionsHandler::IsPersonalDataLoaded() const { 603 bool AutofillOptionsHandler::IsPersonalDataLoaded() const {
604 return personal_data_ && personal_data_->IsDataLoaded(); 604 return personal_data_ && personal_data_->IsDataLoaded();
605 } 605 }
606 606
607 } // namespace options 607 } // namespace options
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc ('k') | chrome/browser/ui/webui/options/browser_options_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698