| Index: chrome/renderer/webplugin_delegate_proxy.cc
|
| diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc
|
| index de4381d03f1bc2340009090f818d94ef31eb1d46..fe7e90b324b64d6cfd306ad2348d8872f5ea1ed5 100644
|
| --- a/chrome/renderer/webplugin_delegate_proxy.cc
|
| +++ b/chrome/renderer/webplugin_delegate_proxy.cc
|
| @@ -257,7 +257,7 @@ static bool SilverlightColorIsTransparent(const std::string& color) {
|
| return false;
|
| std::string value_string = color.substr(3, std::string::npos);
|
| std::vector<std::string> components;
|
| - SplitString(value_string, ',', &components);
|
| + base::SplitString(value_string, ',', &components);
|
| if (components.size() == 4 && !StartsWithASCII(components[0], "1", false))
|
| return true;
|
| } else if (LowerCaseEqualsASCII(color, "transparent")) {
|
|
|