summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/webplugin_delegate_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.cc')
-rw-r--r--chrome/renderer/webplugin_delegate_proxy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc
index de4381d..fe7e90b 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")) {