| Index: webkit/glue/plugins/plugin_list_posix.cc | 
| diff --git a/webkit/glue/plugins/plugin_list_posix.cc b/webkit/glue/plugins/plugin_list_posix.cc | 
| index 682381c16abdfbd9e2231b0505a91e54c3105561..654c0c5792fc09141be47bb51ffdef7cdc8766e4 100644 | 
| --- a/webkit/glue/plugins/plugin_list_posix.cc | 
| +++ b/webkit/glue/plugins/plugin_list_posix.cc | 
| @@ -55,7 +55,7 @@ bool IsBlacklistedBySha1sum(const FilePath& path) { | 
| std::string sha1 = base::SHA1HashString(file_content); | 
| std::string sha1_readable; | 
| for (size_t j = 0; j < sha1.size(); j++) | 
| -      StringAppendF(&sha1_readable, "%02x", sha1[j] & 0xFF); | 
| +      base::StringAppendF(&sha1_readable, "%02x", sha1[j] & 0xFF); | 
| if (bad_entries[i].sha1 == sha1_readable) | 
| return true; | 
| } | 
|  |