diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 14:38:26 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 14:38:26 +0000 |
commit | 52796541ecc14a0aa287ec0859e23350fed71278 (patch) | |
tree | 62d8cd37dc5d8eabaa87d5e62150142154465ff4 /jingle | |
parent | 70d4450270d54a051b3b5ea828814ced1c29857f (diff) | |
download | chromium_src-52796541ecc14a0aa287ec0859e23350fed71278.zip chromium_src-52796541ecc14a0aa287ec0859e23350fed71278.tar.gz chromium_src-52796541ecc14a0aa287ec0859e23350fed71278.tar.bz2 |
Move IsStringUTF8/ASCII to base namespace
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/270183002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r-- | jingle/notifier/listener/notification_defines_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jingle/notifier/listener/notification_defines_unittest.cc b/jingle/notifier/listener/notification_defines_unittest.cc index 389f3cc..d783239 100644 --- a/jingle/notifier/listener/notification_defines_unittest.cc +++ b/jingle/notifier/listener/notification_defines_unittest.cc @@ -17,7 +17,7 @@ class NotificationTest : public testing::Test {}; // Converting it to string shouldn't cause a crash. TEST_F(NotificationTest, BinaryData) { const char kNonUtf8Data[] = { '\xff', '\0' }; - EXPECT_FALSE(IsStringUTF8(kNonUtf8Data)); + EXPECT_FALSE(base::IsStringUTF8(kNonUtf8Data)); Notification notification; notification.data = kNonUtf8Data; EXPECT_EQ("{ channel: \"\", data: \"\\u00FF\" }", notification.ToString()); |