summaryrefslogtreecommitdiffstats
path: root/remoting/host/json_host_config_unittest.cc
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-31 08:08:29 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-31 08:08:29 +0000
commitd92ff03326c5185a1e92babe0cf82c10b84d173a (patch)
tree432c4dfdee2dcef0425102c3f4f41c92454e956d /remoting/host/json_host_config_unittest.cc
parent38fe1964640f28c273b2a68a564b7c47a68f8b01 (diff)
downloadchromium_src-d92ff03326c5185a1e92babe0cf82c10b84d173a.zip
chromium_src-d92ff03326c5185a1e92babe0cf82c10b84d173a.tar.gz
chromium_src-d92ff03326c5185a1e92babe0cf82c10b84d173a.tar.bz2
Convert src/remoting to std::string/char* away from wstring/wchar_t*.
This is easy now that DictionaryValue uses std::string for keys. BUG=23581 TEST=remoting_unittests Review URL: http://codereview.chromium.org/3060034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54441 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/json_host_config_unittest.cc')
-rw-r--r--remoting/host/json_host_config_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/json_host_config_unittest.cc b/remoting/host/json_host_config_unittest.cc
index 4d40577..534b4c5 100644
--- a/remoting/host/json_host_config_unittest.cc
+++ b/remoting/host/json_host_config_unittest.cc
@@ -79,7 +79,7 @@ TEST_F(JsonHostConfigTest, Read) {
EXPECT_TRUE(target->GetString(kPrivateKeyConfigPath, &value));
EXPECT_EQ("TEST_PRIVATE_KEY", value);
- EXPECT_FALSE(target->GetString(L"non_existent_value", &value));
+ EXPECT_FALSE(target->GetString("non_existent_value", &value));
}
TEST_F(JsonHostConfigTest, Write) {