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

Unified Diff: chrome/browser/automation/automation_provider.cc

Issue 3091005: Rename GetStringAsUTF16() to GetString() (and overload), etc. (Closed)
Patch Set: Created 10 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/values.cc ('k') | chrome/browser/background_contents_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/automation_provider.cc
diff --git a/chrome/browser/automation/automation_provider.cc b/chrome/browser/automation/automation_provider.cc
index e65d166cfd6535c25a18cfaf8ead9405c7299b37..8f3e136869a79919c08b4d98ebdd949016dda870 100644
--- a/chrome/browser/automation/automation_provider.cc
+++ b/chrome/browser/automation/automation_provider.cc
@@ -2555,13 +2555,13 @@ webkit_glue::PasswordForm GetPasswordFormFromDict(
// We don't care if any of these fail - they are either optional or checked
// before this function is called.
password_dict.GetString("signon_realm", &signon_realm);
- password_dict.GetStringAsUTF16("username_value", &username_value);
- password_dict.GetStringAsUTF16("password_value", &password_value);
- password_dict.GetStringAsUTF16("origin_url", &origin_url_text);
- password_dict.GetStringAsUTF16("username_element", &username_element);
- password_dict.GetStringAsUTF16("password_element", &password_element);
- password_dict.GetStringAsUTF16("submit_element", &submit_element);
- password_dict.GetStringAsUTF16("action_target", &action_target_text);
+ password_dict.GetString("username_value", &username_value);
+ password_dict.GetString("password_value", &password_value);
+ password_dict.GetString("origin_url", &origin_url_text);
+ password_dict.GetString("username_element", &username_element);
+ password_dict.GetString("password_element", &password_element);
+ password_dict.GetString("submit_element", &submit_element);
+ password_dict.GetString("action_target", &action_target_text);
password_dict.GetBoolean("blacklist", &blacklist);
GURL origin_gurl(origin_url_text);
@@ -3130,7 +3130,8 @@ std::vector<AutoFillProfile> AutomationProvider::GetAutoFillProfilesFromList(
autofill_type_to_string.begin();
type_it != autofill_type_to_string.end(); ++type_it) {
if (profile_info->HasKey(type_it->second)) {
- if (profile_info->GetStringAsUTF16(type_it->second, &current_value)) {
+ if (profile_info->GetString(WideToUTF8(type_it->second),
+ &current_value)) {
profile.SetInfo(AutoFillType(type_it->first), current_value);
} else {
*error_message= "All values must be strings";
@@ -3164,7 +3165,7 @@ std::vector<CreditCard> AutomationProvider::GetCreditCardsFromList(
credit_card_type_to_string.begin();
type_it != credit_card_type_to_string.end(); ++type_it) {
if (card_info->HasKey(type_it->second)) {
- if (card_info->GetStringAsUTF16(type_it->second, &current_value)) {
+ if (card_info->GetString(WideToUTF8(type_it->second), &current_value)) {
card.SetInfo(AutoFillType(type_it->first), current_value);
} else {
*error_message= "All values must be strings";
« no previous file with comments | « base/values.cc ('k') | chrome/browser/background_contents_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698