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

Unified Diff: base/values.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.h ('k') | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/values.cc
diff --git a/base/values.cc b/base/values.cc
index af801bc8f2da82c3555761b03e0723919366efbd..78547a44991db0aef059a16eaed3e8bd1e24effb 100644
--- a/base/values.cc
+++ b/base/values.cc
@@ -565,8 +565,8 @@ bool DictionaryValue::GetString(const std::string& path,
return value->GetAsString(out_value);
}
-bool DictionaryValue::GetStringAsUTF16(const std::string& path,
- string16* out_value) const {
+bool DictionaryValue::GetString(const std::string& path,
+ string16* out_value) const {
Value* value;
if (!Get(path, &value))
return false;
@@ -646,12 +646,6 @@ bool DictionaryValue::GetReal(const std::wstring& path,
return GetReal(WideToUTF8(path), out_value);
}
-// TODO(viettrungluu): or maybe we should get rid of the "AsUTF16" version?
-bool DictionaryValue::GetString(const std::string& path,
- string16* out_value) const {
- return GetStringAsUTF16(path, out_value);
-}
-
// TODO(viettrungluu): Deprecated and to be removed:
bool DictionaryValue::GetString(const std::wstring& path,
std::string* out_value) const {
@@ -669,12 +663,6 @@ bool DictionaryValue::GetString(const std::wstring& path,
}
// TODO(viettrungluu): Deprecated and to be removed:
-bool DictionaryValue::GetStringAsUTF16(const std::wstring& path,
- string16* out_value) const {
- return GetStringAsUTF16(WideToUTF8(path), out_value);
-}
-
-// TODO(viettrungluu): Deprecated and to be removed:
bool DictionaryValue::GetBinary(const std::wstring& path,
BinaryValue** out_value) const {
return GetBinary(WideToUTF8(path), out_value);
@@ -723,7 +711,7 @@ bool DictionaryValue::GetStringWithoutPathExpansion(
return value->GetAsString(out_value);
}
-bool DictionaryValue::GetStringAsUTF16WithoutPathExpansion(
+bool DictionaryValue::GetStringWithoutPathExpansion(
const std::string& key,
string16* out_value) const {
Value* value;
@@ -791,13 +779,6 @@ bool DictionaryValue::GetStringWithoutPathExpansion(
}
// TODO(viettrungluu): Deprecated and to be removed:
-bool DictionaryValue::GetStringAsUTF16WithoutPathExpansion(
- const std::wstring& key,
- string16* out_value) const {
- return GetStringAsUTF16WithoutPathExpansion(WideToUTF8(key), out_value);
-}
-
-// TODO(viettrungluu): Deprecated and to be removed:
bool DictionaryValue::GetDictionaryWithoutPathExpansion(
const std::wstring& key,
DictionaryValue** out_value) const {
@@ -1058,7 +1039,7 @@ bool ListValue::GetString(size_t index, std::string* out_value) const {
return value->GetAsString(out_value);
}
-bool ListValue::GetString(size_t index, std::wstring* out_value) const {
+bool ListValue::GetString(size_t index, string16* out_value) const {
Value* value;
if (!Get(index, &value))
return false;
@@ -1066,13 +1047,16 @@ bool ListValue::GetString(size_t index, std::wstring* out_value) const {
return value->GetAsString(out_value);
}
-bool ListValue::GetStringAsUTF16(size_t index, string16* out_value) const {
+#if !defined(WCHAR_T_IS_UTF16)
+// TODO(viettrungluu): Deprecated and to be removed:
+bool ListValue::GetString(size_t index, std::wstring* out_value) const {
Value* value;
if (!Get(index, &value))
return false;
return value->GetAsString(out_value);
}
+#endif
bool ListValue::GetBinary(size_t index, BinaryValue** out_value) const {
Value* value;
« no previous file with comments | « base/values.h ('k') | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698