X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fppapi%2Fshared_impl%2Fdictionary_var.cc;h=8676c4356e8deacfc1536e2ba743e929b067aa63;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=54d201029e169e6d9b03246a000e4c27662625f2;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/ppapi/shared_impl/dictionary_var.cc b/src/ppapi/shared_impl/dictionary_var.cc index 54d2010..8676c43 100644 --- a/src/ppapi/shared_impl/dictionary_var.cc +++ b/src/ppapi/shared_impl/dictionary_var.cc @@ -90,7 +90,7 @@ PP_Var DictionaryVar::GetKeys() const { bool DictionaryVar::SetWithStringKey(const std::string& utf8_key, const PP_Var& value) { - if (!IsStringUTF8(utf8_key)) + if (!base::IsStringUTF8(utf8_key)) return false; key_value_map_[utf8_key] = value;