| Index: content/public/common/webplugininfo.cc
 | 
| diff --git a/content/public/common/webplugininfo.cc b/content/public/common/webplugininfo.cc
 | 
| index d12dfd744ec279c7a3ea8ed4f64ec30288d92bce..b6fedb9bd0f91897d6558f27b9059196397ec409 100644
 | 
| --- a/content/public/common/webplugininfo.cc
 | 
| +++ b/content/public/common/webplugininfo.cc
 | 
| @@ -83,8 +83,8 @@
 | 
|  
 | 
|    // Remove leading zeros from each of the version components.
 | 
|    std::string no_leading_zeros_version;
 | 
| -  std::vector<std::string> numbers = base::SplitString(
 | 
| -      version, ".", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
 | 
| +  std::vector<std::string> numbers;
 | 
| +  base::SplitString(version, '.', &numbers);
 | 
|    for (size_t i = 0; i < numbers.size(); ++i) {
 | 
|      size_t n = numbers[i].size();
 | 
|      size_t j = 0;
 | 
| 
 |