| Index: net/base/data_url.cc
 | 
| diff --git a/net/base/data_url.cc b/net/base/data_url.cc
 | 
| index b03d9976ca6cfad855faf517dde6c0a31260fd3d..d5585872a28dd823a77b11b98a7a195c59c6e611 100644
 | 
| --- a/net/base/data_url.cc
 | 
| +++ b/net/base/data_url.cc
 | 
| @@ -106,7 +106,7 @@ bool DataURL::Parse(const GURL& url, std::string* mime_type,
 | 
|    if (base64_encoded || !(mime_type->compare(0, 5, "text/") == 0 ||
 | 
|                            mime_type->find("xml") != std::string::npos)) {
 | 
|      temp_data.erase(std::remove_if(temp_data.begin(), temp_data.end(),
 | 
| -                                   IsAsciiWhitespace<wchar_t>),
 | 
| +                                   base::IsAsciiWhitespace<wchar_t>),
 | 
|                      temp_data.end());
 | 
|    }
 | 
|  
 | 
| 
 |