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

Unified Diff: chrome/renderer/extensions/extension_api_json_validity_unittest.cc

Issue 3057027: Convert wstring/wchar_t* in chrome/renderer to std::string/char* or string16. (Closed)
Patch Set: utf8 -> utf16 for things coming from resources Created 10 years, 5 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 | « chrome/renderer/blocked_plugin.cc ('k') | chrome/renderer/extensions/extension_process_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/extension_api_json_validity_unittest.cc
diff --git a/chrome/renderer/extensions/extension_api_json_validity_unittest.cc b/chrome/renderer/extensions/extension_api_json_validity_unittest.cc
index fa87afa85a20ccbb9934029a2751bac3c84d8b3b..b692649f358fc3e71837bb6b66aa64d8283b3d23 100644
--- a/chrome/renderer/extensions/extension_api_json_validity_unittest.cc
+++ b/chrome/renderer/extensions/extension_api_json_validity_unittest.cc
@@ -106,7 +106,7 @@ TEST_F(ExtensionApiJsonValidityTest, Basic) {
<< error_message;
ListValue* functions_list;
- ASSERT_TRUE(test_namespace_dict->GetList(L"functions", &functions_list))
+ ASSERT_TRUE(test_namespace_dict->GetList("functions", &functions_list))
<< "Namespace 'test' should define some functions.";
EXPECT_TRUE(FindDictionaryWithProperyValue(
« no previous file with comments | « chrome/renderer/blocked_plugin.cc ('k') | chrome/renderer/extensions/extension_process_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698