Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / ppapi / shared_impl / dictionary_var.cc
index 54d2010..8676c43 100644 (file)
@@ -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;