diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 04:16:43 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 04:16:43 +0000 |
commit | c72674bd8c7b42988c5f680da401db99e38d9484 (patch) | |
tree | 12bac32ca19de279928cadc0136eb6154e3d27d9 | |
parent | b76329da0d38e599eb5f4f4581443d4f3a20feac (diff) | |
download | chromium_src-c72674bd8c7b42988c5f680da401db99e38d9484.zip chromium_src-c72674bd8c7b42988c5f680da401db99e38d9484.tar.gz chromium_src-c72674bd8c7b42988c5f680da401db99e38d9484.tar.bz2 |
Use a direct include of strings headers in components/, part 2.
BUG=247723
TEST=none
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/16450003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205402 0039d316-1c4b-4281-b951-d872f2087c98
55 files changed, 61 insertions, 61 deletions
diff --git a/components/autofill/browser/form_field.cc b/components/autofill/browser/form_field.cc index 6424231..809bd3c 100644 --- a/components/autofill/browser/form_field.cc +++ b/components/autofill/browser/form_field.cc @@ -10,8 +10,8 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/string_util.h" -#include "base/stringprintf.h" +#include "base/strings/string_util.h" +#include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/address_field.h" #include "components/autofill/browser/autofill_field.h" diff --git a/components/autofill/browser/form_field.h b/components/autofill/browser/form_field.h index fc295e3..afa5bbe 100644 --- a/components/autofill/browser/form_field.h +++ b/components/autofill/browser/form_field.h @@ -9,7 +9,7 @@ #include "base/basictypes.h" #include "base/gtest_prod_util.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/autofill/browser/autofill_type.h" namespace autofill { diff --git a/components/autofill/browser/form_field_unittest.cc b/components/autofill/browser/form_field_unittest.cc index a67f420..d3e90fa 100644 --- a/components/autofill/browser/form_field_unittest.cc +++ b/components/autofill/browser/form_field_unittest.cc @@ -3,7 +3,7 @@ // found in the LICENSE file. #include "base/memory/scoped_vector.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autofill_field.h" #include "components/autofill/browser/form_field.h" diff --git a/components/autofill/browser/form_group.h b/components/autofill/browser/form_group.h index 90ff87a..4af6d55 100644 --- a/components/autofill/browser/form_group.h +++ b/components/autofill/browser/form_group.h @@ -7,7 +7,7 @@ #include <string> -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/autofill/browser/field_types.h" namespace autofill { diff --git a/components/autofill/browser/form_structure.cc b/components/autofill/browser/form_structure.cc index ad903a3..f9738ee 100644 --- a/components/autofill/browser/form_structure.cc +++ b/components/autofill/browser/form_structure.cc @@ -11,9 +11,9 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" #include "base/sha1.h" -#include "base/string_util.h" -#include "base/stringprintf.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/string_util.h" +#include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "base/time.h" #include "components/autofill/browser/autocheckout_page_meta_data.h" diff --git a/components/autofill/browser/form_structure_unittest.cc b/components/autofill/browser/form_structure_unittest.cc index d47a19c..feb1c56 100644 --- a/components/autofill/browser/form_structure_unittest.cc +++ b/components/autofill/browser/form_structure_unittest.cc @@ -5,7 +5,7 @@ #include "components/autofill/browser/form_structure.h" #include "base/memory/scoped_ptr.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autocheckout_page_meta_data.h" #include "components/autofill/browser/autofill_metrics.h" diff --git a/components/autofill/browser/name_field.cc b/components/autofill/browser/name_field.cc index ee3b021..60c5bf2 100644 --- a/components/autofill/browser/name_field.cc +++ b/components/autofill/browser/name_field.cc @@ -6,7 +6,7 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autofill_regex_constants.h" #include "components/autofill/browser/autofill_scanner.h" diff --git a/components/autofill/browser/personal_data_manager.cc b/components/autofill/browser/personal_data_manager.cc index a399548..531b5e1 100644 --- a/components/autofill/browser/personal_data_manager.cc +++ b/components/autofill/browser/personal_data_manager.cc @@ -11,8 +11,8 @@ #include "base/logging.h" #include "base/memory/ref_counted.h" #include "base/prefs/pref_service.h" -#include "base/string_util.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autofill-inl.h" #include "components/autofill/browser/autofill_country.h" diff --git a/components/autofill/browser/personal_data_manager.h b/components/autofill/browser/personal_data_manager.h index 0457c20..8692dfb 100644 --- a/components/autofill/browser/personal_data_manager.h +++ b/components/autofill/browser/personal_data_manager.h @@ -12,7 +12,7 @@ #include "base/memory/scoped_ptr.h" #include "base/memory/scoped_vector.h" #include "base/observer_list.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/autofill/browser/autofill_profile.h" #include "components/autofill/browser/credit_card.h" #include "components/autofill/browser/field_types.h" diff --git a/components/autofill/browser/personal_data_manager_mac.mm b/components/autofill/browser/personal_data_manager_mac.mm index 61d1c34..5e28add 100644 --- a/components/autofill/browser/personal_data_manager_mac.mm +++ b/components/autofill/browser/personal_data_manager_mac.mm @@ -14,7 +14,7 @@ #import "base/mac/scoped_nsexception_enabler.h" #include "base/memory/scoped_ptr.h" #include "base/memory/scoped_vector.h" -#include "base/stringprintf.h" +#include "base/strings/stringprintf.h" #include "base/strings/sys_string_conversions.h" #include "components/autofill/browser/autofill_country.h" #include "components/autofill/browser/autofill_profile.h" diff --git a/components/autofill/browser/phone_field.cc b/components/autofill/browser/phone_field.cc index 073f4a7..28eefb4 100644 --- a/components/autofill/browser/phone_field.cc +++ b/components/autofill/browser/phone_field.cc @@ -6,8 +6,8 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/string16.h" -#include "base/string_util.h" +#include "base/strings/string16.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autofill_field.h" #include "components/autofill/browser/autofill_regex_constants.h" diff --git a/components/autofill/browser/phone_number.cc b/components/autofill/browser/phone_number.cc index 567aaf1..41f6364 100644 --- a/components/autofill/browser/phone_number.cc +++ b/components/autofill/browser/phone_number.cc @@ -5,8 +5,8 @@ #include "components/autofill/browser/phone_number.h" #include "base/basictypes.h" -#include "base/string_util.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autofill_country.h" #include "components/autofill/browser/autofill_profile.h" diff --git a/components/autofill/browser/phone_number.h b/components/autofill/browser/phone_number.h index 62f27d5..26feea3 100644 --- a/components/autofill/browser/phone_number.h +++ b/components/autofill/browser/phone_number.h @@ -9,7 +9,7 @@ #include <vector> #include "base/gtest_prod_util.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/autofill/browser/autofill_type.h" #include "components/autofill/browser/form_group.h" #include "components/autofill/browser/phone_number_i18n.h" diff --git a/components/autofill/browser/phone_number_i18n.cc b/components/autofill/browser/phone_number_i18n.cc index 9143f73..17a1348 100644 --- a/components/autofill/browser/phone_number_i18n.cc +++ b/components/autofill/browser/phone_number_i18n.cc @@ -6,9 +6,9 @@ #include "base/basictypes.h" #include "base/logging.h" -#include "base/string_util.h" -#include "base/stringprintf.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/string_util.h" +#include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autofill_country.h" #include "third_party/libphonenumber/src/phonenumber_api.h" diff --git a/components/autofill/browser/phone_number_i18n.h b/components/autofill/browser/phone_number_i18n.h index b6b68a6..b2de4df 100644 --- a/components/autofill/browser/phone_number_i18n.h +++ b/components/autofill/browser/phone_number_i18n.h @@ -10,7 +10,7 @@ #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" -#include "base/string16.h" +#include "base/strings/string16.h" namespace i18n { namespace phonenumbers { diff --git a/components/autofill/browser/phone_number_i18n_unittest.cc b/components/autofill/browser/phone_number_i18n_unittest.cc index 5901312..610cbd7 100644 --- a/components/autofill/browser/phone_number_i18n_unittest.cc +++ b/components/autofill/browser/phone_number_i18n_unittest.cc @@ -3,7 +3,7 @@ // found in the LICENSE file. #include "base/message_loop.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/phone_number_i18n.h" #include "content/public/test/test_browser_thread.h" diff --git a/components/autofill/browser/phone_number_unittest.cc b/components/autofill/browser/phone_number_unittest.cc index 58c4682..54fc7bc 100644 --- a/components/autofill/browser/phone_number_unittest.cc +++ b/components/autofill/browser/phone_number_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/browser/autofill_profile.h" #include "components/autofill/browser/field_types.h" diff --git a/components/autofill/browser/state_names.cc b/components/autofill/browser/state_names.cc index 9fca367..a8ff045 100644 --- a/components/autofill/browser/state_names.cc +++ b/components/autofill/browser/state_names.cc @@ -5,7 +5,7 @@ #include "components/autofill/browser/state_names.h" #include "base/basictypes.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" namespace autofill { diff --git a/components/autofill/browser/state_names.h b/components/autofill/browser/state_names.h index d609a31..4bb3835 100644 --- a/components/autofill/browser/state_names.h +++ b/components/autofill/browser/state_names.h @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/string16.h" +#include "base/strings/string16.h" #ifndef COMPONENTS_AUTOFILL_BROWSER_STATE_NAMES_H_ #define COMPONENTS_AUTOFILL_BROWSER_STATE_NAMES_H_ diff --git a/components/autofill/browser/validation.cc b/components/autofill/browser/validation.cc index 3875428..657e227 100644 --- a/components/autofill/browser/validation.cc +++ b/components/autofill/browser/validation.cc @@ -4,9 +4,9 @@ #include "components/autofill/browser/validation.h" -#include "base/string_util.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_piece.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/time.h" #include "components/autofill/browser/autofill_regexes.h" diff --git a/components/autofill/browser/validation.h b/components/autofill/browser/validation.h index 76ae2f2..ad0c86c 100644 --- a/components/autofill/browser/validation.h +++ b/components/autofill/browser/validation.h @@ -5,7 +5,7 @@ #ifndef COMPONENTS_AUTOFILL_BROWSER_VALIDATION_H_ #define COMPONENTS_AUTOFILL_BROWSER_VALIDATION_H_ -#include "base/string16.h" +#include "base/strings/string16.h" namespace base { class Time; diff --git a/components/autofill/browser/webdata/autofill_entry.h b/components/autofill/browser/webdata/autofill_entry.h index 6f21031..94b633a 100644 --- a/components/autofill/browser/webdata/autofill_entry.h +++ b/components/autofill/browser/webdata/autofill_entry.h @@ -9,7 +9,7 @@ #include <vector> #include "base/gtest_prod_util.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/time.h" namespace autofill { diff --git a/components/autofill/browser/webdata/autofill_table.h b/components/autofill/browser/webdata/autofill_table.h index 9efbe48..2e78fea 100644 --- a/components/autofill/browser/webdata/autofill_table.h +++ b/components/autofill/browser/webdata/autofill_table.h @@ -10,7 +10,7 @@ #include "base/compiler_specific.h" #include "base/gtest_prod_util.h" #include "base/memory/scoped_vector.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/webdata/common/web_database_table.h" class WebDatabase; diff --git a/components/autofill/browser/webdata/autofill_table_unittest.cc b/components/autofill/browser/webdata/autofill_table_unittest.cc index 8621eb5..7c69bb5 100644 --- a/components/autofill/browser/webdata/autofill_table_unittest.cc +++ b/components/autofill/browser/webdata/autofill_table_unittest.cc @@ -8,8 +8,8 @@ #include "base/files/scoped_temp_dir.h" #include "base/guid.h" #include "base/path_service.h" -#include "base/string_util.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/time.h" #include "components/autofill/browser/autofill_profile.h" diff --git a/components/autofill/browser/webdata/autofill_webdata.h b/components/autofill/browser/webdata/autofill_webdata.h index 1e0ad78..5c66e6b 100644 --- a/components/autofill/browser/webdata/autofill_webdata.h +++ b/components/autofill/browser/webdata/autofill_webdata.h @@ -9,7 +9,7 @@ #include <vector> #include "base/memory/scoped_ptr.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/webdata/common/web_data_service_base.h" class Profile; diff --git a/components/autofill/browser/webdata/web_data_service_unittest.cc b/components/autofill/browser/webdata/web_data_service_unittest.cc index 128ac1c..ed64064 100644 --- a/components/autofill/browser/webdata/web_data_service_unittest.cc +++ b/components/autofill/browser/webdata/web_data_service_unittest.cc @@ -12,8 +12,8 @@ #include "base/memory/scoped_vector.h" #include "base/message_loop.h" #include "base/stl_util.h" -#include "base/string16.h" -#include "base/string_util.h" +#include "base/strings/string16.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/synchronization/waitable_event.h" #include "base/time.h" diff --git a/components/autofill/common/form_data.cc b/components/autofill/common/form_data.cc index 569d7e1..0b7287d 100644 --- a/components/autofill/common/form_data.cc +++ b/components/autofill/common/form_data.cc @@ -4,7 +4,7 @@ #include "components/autofill/common/form_data.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" namespace autofill { diff --git a/components/autofill/common/form_data.h b/components/autofill/common/form_data.h index 3a16729..6927d55 100644 --- a/components/autofill/common/form_data.h +++ b/components/autofill/common/form_data.h @@ -7,7 +7,7 @@ #include <vector> -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/autofill/common/form_field_data.h" #include "content/public/common/ssl_status.h" #include "googleurl/src/gurl.h" diff --git a/components/autofill/common/form_field_data.cc b/components/autofill/common/form_field_data.cc index c12a135..9040137 100644 --- a/components/autofill/common/form_field_data.cc +++ b/components/autofill/common/form_field_data.cc @@ -4,7 +4,7 @@ #include "components/autofill/common/form_field_data.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" namespace autofill { diff --git a/components/autofill/common/form_field_data.h b/components/autofill/common/form_field_data.h index e1272ca..9b87d15 100644 --- a/components/autofill/common/form_field_data.h +++ b/components/autofill/common/form_field_data.h @@ -7,7 +7,7 @@ #include <vector> -#include "base/string16.h" +#include "base/strings/string16.h" namespace autofill { diff --git a/components/autofill/content/browser/wallet/encryption_escrow_client.cc b/components/autofill/content/browser/wallet/encryption_escrow_client.cc index c0adf08..68b4d17 100644 --- a/components/autofill/content/browser/wallet/encryption_escrow_client.cc +++ b/components/autofill/content/browser/wallet/encryption_escrow_client.cc @@ -6,9 +6,9 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/stringprintf.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_split.h" +#include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/content/browser/wallet/encryption_escrow_client_observer.h" #include "components/autofill/content/browser/wallet/instrument.h" diff --git a/components/autofill/content/browser/wallet/instrument.cc b/components/autofill/content/browser/wallet/instrument.cc index 6c94b60..b9006b6 100644 --- a/components/autofill/content/browser/wallet/instrument.cc +++ b/components/autofill/content/browser/wallet/instrument.cc @@ -5,8 +5,8 @@ #include "components/autofill/content/browser/wallet/instrument.h" #include "base/logging.h" -#include "base/string_util.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/values.h" #include "components/autofill/browser/autofill_country.h" diff --git a/components/autofill/content/browser/wallet/instrument.h b/components/autofill/content/browser/wallet/instrument.h index 97ee2e8..910e2cbc 100644 --- a/components/autofill/content/browser/wallet/instrument.h +++ b/components/autofill/content/browser/wallet/instrument.h @@ -8,7 +8,7 @@ #include <string> #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" -#include "base/string16.h" +#include "base/strings/string16.h" namespace base { class DictionaryValue; diff --git a/components/autofill/content/browser/wallet/required_action.cc b/components/autofill/content/browser/wallet/required_action.cc index 716da3e..28f9b20 100644 --- a/components/autofill/content/browser/wallet/required_action.cc +++ b/components/autofill/content/browser/wallet/required_action.cc @@ -5,7 +5,7 @@ #include "components/autofill/content/browser/wallet/required_action.h" #include "base/logging.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" namespace autofill { namespace wallet { diff --git a/components/autofill/content/browser/wallet/wallet_address.cc b/components/autofill/content/browser/wallet/wallet_address.cc index afc27ef..1c0e9cc 100644 --- a/components/autofill/content/browser/wallet/wallet_address.cc +++ b/components/autofill/content/browser/wallet/wallet_address.cc @@ -5,7 +5,7 @@ #include "components/autofill/content/browser/wallet/wallet_address.h" #include "base/logging.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/values.h" #include "components/autofill/browser/autofill_country.h" diff --git a/components/autofill/content/browser/wallet/wallet_address.h b/components/autofill/content/browser/wallet/wallet_address.h index 87a335e..7e6ebf9 100644 --- a/components/autofill/content/browser/wallet/wallet_address.h +++ b/components/autofill/content/browser/wallet/wallet_address.h @@ -9,7 +9,7 @@ #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/autofill/browser/field_types.h" namespace base { diff --git a/components/autofill/content/browser/wallet/wallet_client.cc b/components/autofill/content/browser/wallet/wallet_client.cc index 59e10c1..d6c8431 100644 --- a/components/autofill/content/browser/wallet/wallet_client.cc +++ b/components/autofill/content/browser/wallet/wallet_client.cc @@ -9,7 +9,7 @@ #include "base/json/json_writer.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "components/autofill/browser/autofill_metrics.h" #include "components/autofill/content/browser/wallet/instrument.h" #include "components/autofill/content/browser/wallet/wallet_address.h" diff --git a/components/autofill/content/browser/wallet/wallet_client_unittest.cc b/components/autofill/content/browser/wallet/wallet_client_unittest.cc index 2ddc815..1072ead 100644 --- a/components/autofill/content/browser/wallet/wallet_client_unittest.cc +++ b/components/autofill/content/browser/wallet/wallet_client_unittest.cc @@ -6,8 +6,8 @@ #include "base/json/json_writer.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/string_util.h" #include "base/strings/string_number_conversions.h" +#include "base/strings/string_util.h" #include "base/values.h" #include "chrome/test/base/testing_profile.h" #include "components/autofill/browser/autofill_metrics.h" diff --git a/components/autofill/content/browser/wallet/wallet_items.h b/components/autofill/content/browser/wallet/wallet_items.h index 08d0d1d..6d5cff9 100644 --- a/components/autofill/content/browser/wallet/wallet_items.h +++ b/components/autofill/content/browser/wallet/wallet_items.h @@ -13,7 +13,7 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" #include "base/memory/scoped_vector.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "components/autofill/content/browser/wallet/required_action.h" #include "components/autofill/content/browser/wallet/wallet_address.h" #include "googleurl/src/gurl.h" diff --git a/components/autofill/content/browser/wallet/wallet_signin_helper.cc b/components/autofill/content/browser/wallet/wallet_signin_helper.cc index a78011a..1474a93 100644 --- a/components/autofill/content/browser/wallet/wallet_signin_helper.cc +++ b/components/autofill/content/browser/wallet/wallet_signin_helper.cc @@ -8,7 +8,7 @@ #include "base/json/json_reader.h" #include "base/logging.h" #include "base/rand_util.h" -#include "base/stringprintf.h" +#include "base/strings/stringprintf.h" #include "base/time.h" #include "base/values.h" #include "components/autofill/content/browser/wallet/wallet_service_url.h" diff --git a/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc b/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc index ea4b444f..c768151 100644 --- a/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc +++ b/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc @@ -6,7 +6,7 @@ #include "base/bind.h" #include "base/bind_helpers.h" -#include "base/stringprintf.h" +#include "base/strings/stringprintf.h" #include "chrome/test/base/testing_profile.h" #include "components/autofill/content/browser/wallet/wallet_service_url.h" #include "components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h" diff --git a/components/autofill/content/browser/wallet/wallet_test_util.cc b/components/autofill/content/browser/wallet/wallet_test_util.cc index 8b5cf8f..ebe4556 100644 --- a/components/autofill/content/browser/wallet/wallet_test_util.cc +++ b/components/autofill/content/browser/wallet/wallet_test_util.cc @@ -7,7 +7,7 @@ #include <string> #include <vector> -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "base/time.h" #include "base/values.h" diff --git a/components/autofill/content/renderer/autofill_agent.cc b/components/autofill/content/renderer/autofill_agent.cc index d68deb1..4cc7061 100644 --- a/components/autofill/content/renderer/autofill_agent.cc +++ b/components/autofill/content/renderer/autofill_agent.cc @@ -7,8 +7,8 @@ #include "base/bind.h" #include "base/command_line.h" #include "base/message_loop.h" -#include "base/string_util.h" #include "base/strings/string_split.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/time.h" #include "components/autofill/common/autocheckout_status.h" diff --git a/components/autofill/content/renderer/form_autofill_util.cc b/components/autofill/content/renderer/form_autofill_util.cc index 5adb87f..18d4de9 100644 --- a/components/autofill/content/renderer/form_autofill_util.cc +++ b/components/autofill/content/renderer/form_autofill_util.cc @@ -10,7 +10,7 @@ #include "base/logging.h" #include "base/memory/scoped_vector.h" #include "base/metrics/field_trial.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "components/autofill/common/autofill_switches.h" #include "components/autofill/common/form_data.h" diff --git a/components/autofill/content/renderer/form_autofill_util.h b/components/autofill/content/renderer/form_autofill_util.h index cd65338..e3823b6 100644 --- a/components/autofill/content/renderer/form_autofill_util.h +++ b/components/autofill/content/renderer/form_autofill_util.h @@ -7,7 +7,7 @@ #include <vector> -#include "base/string16.h" +#include "base/strings/string16.h" struct FormData; struct FormFieldData; diff --git a/components/autofill/content/renderer/form_cache.h b/components/autofill/content/renderer/form_cache.h index 6d3294e..9e70a3f 100644 --- a/components/autofill/content/renderer/form_cache.h +++ b/components/autofill/content/renderer/form_cache.h @@ -9,7 +9,7 @@ #include <set> #include <vector> -#include "base/string16.h" +#include "base/strings/string16.h" namespace WebKit { class WebDocument; diff --git a/components/sessions/serialized_navigation_entry.h b/components/sessions/serialized_navigation_entry.h index f76642b..2a1deec 100644 --- a/components/sessions/serialized_navigation_entry.h +++ b/components/sessions/serialized_navigation_entry.h @@ -11,7 +11,7 @@ #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/time.h" #include "components/sessions/sessions_export.h" #include "content/public/common/page_state.h" diff --git a/components/sessions/serialized_navigation_entry_unittest.cc b/components/sessions/serialized_navigation_entry_unittest.cc index cb4598c..5902347 100644 --- a/components/sessions/serialized_navigation_entry_unittest.cc +++ b/components/sessions/serialized_navigation_entry_unittest.cc @@ -10,7 +10,7 @@ #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" #include "base/pickle.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/strings/string_number_conversions.h" #include "base/strings/utf_string_conversions.h" #include "base/time.h" diff --git a/components/visitedlink/browser/visitedlink_master.cc b/components/visitedlink/browser/visitedlink_master.cc index 97b83ab..f78d5c1 100644 --- a/components/visitedlink/browser/visitedlink_master.cc +++ b/components/visitedlink/browser/visitedlink_master.cc @@ -22,7 +22,7 @@ #include "base/path_service.h" #include "base/process_util.h" #include "base/rand_util.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/threading/thread_restrictions.h" #include "components/visitedlink/browser/visitedlink_delegate.h" #include "components/visitedlink/browser/visitedlink_event_listener.h" diff --git a/components/visitedlink/test/visitedlink_perftest.cc b/components/visitedlink/test/visitedlink_perftest.cc index 1a5ae4b..540b19f 100644 --- a/components/visitedlink/test/visitedlink_perftest.cc +++ b/components/visitedlink/test/visitedlink_perftest.cc @@ -10,7 +10,7 @@ #include "base/files/file_path.h" #include "base/perftimer.h" #include "base/shared_memory.h" -#include "base/stringprintf.h" +#include "base/strings/stringprintf.h" #include "base/test/test_file_util.h" #include "components/visitedlink/browser/visitedlink_master.h" #include "googleurl/src/gurl.h" diff --git a/components/visitedlink/test/visitedlink_unittest.cc b/components/visitedlink/test/visitedlink_unittest.cc index 35be877..47d4efc 100644 --- a/components/visitedlink/test/visitedlink_unittest.cc +++ b/components/visitedlink/test/visitedlink_unittest.cc @@ -12,7 +12,7 @@ #include "base/process_util.h" #include "base/run_loop.h" #include "base/shared_memory.h" -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/time.h" #include "components/visitedlink/browser/visitedlink_delegate.h" #include "components/visitedlink/browser/visitedlink_event_listener.h" diff --git a/components/webdata/common/web_database_migration_unittest.cc b/components/webdata/common/web_database_migration_unittest.cc index dbd18cf..0181f2e 100644 --- a/components/webdata/common/web_database_migration_unittest.cc +++ b/components/webdata/common/web_database_migration_unittest.cc @@ -9,7 +9,7 @@ #include "base/guid.h" #include "base/message_loop.h" #include "base/stl_util.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/strings/string_number_conversions.h" #include "base/strings/utf_string_conversions.h" #include "base/time.h" diff --git a/components/webdata/encryptor/encryptor.h b/components/webdata/encryptor/encryptor.h index d76c3c7..d8f1a363 100644 --- a/components/webdata/encryptor/encryptor.h +++ b/components/webdata/encryptor/encryptor.h @@ -7,7 +7,7 @@ #include <string> -#include "base/string16.h" +#include "base/strings/string16.h" // The Encryptor class gives access to simple encryption and decryption of // strings. Note that on Mac, access to the system Keychain is required and diff --git a/components/webdata/encryptor/encryptor_unittest.cc b/components/webdata/encryptor/encryptor_unittest.cc index dcc6bb7..95158f1 100644 --- a/components/webdata/encryptor/encryptor_unittest.cc +++ b/components/webdata/encryptor/encryptor_unittest.cc @@ -6,7 +6,7 @@ #include <string> -#include "base/string_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/components/webdata/encryptor/ie7_password.cc b/components/webdata/encryptor/ie7_password.cc index 793fde8..e7db3ab 100644 --- a/components/webdata/encryptor/ie7_password.cc +++ b/components/webdata/encryptor/ie7_password.cc @@ -10,8 +10,8 @@ #include "base/memory/scoped_ptr.h" #include "base/sha1.h" -#include "base/string_util.h" -#include "base/stringprintf.h" +#include "base/strings/string_util.h" +#include "base/strings/stringprintf.h" namespace { |