| Index: webkit/glue/plugins/webplugin_delegate_impl_win.cc
|
| diff --git a/webkit/glue/plugins/webplugin_delegate_impl_win.cc b/webkit/glue/plugins/webplugin_delegate_impl_win.cc
|
| index 8c8868022e1fea51aecfd34ce507f7f674b9aee0..2a1077533fc5236afd55087de0d3577a371b6c28 100644
|
| --- a/webkit/glue/plugins/webplugin_delegate_impl_win.cc
|
| +++ b/webkit/glue/plugins/webplugin_delegate_impl_win.cc
|
| @@ -289,7 +289,7 @@ WebPluginDelegateImpl::WebPluginDelegateImpl(
|
| } else if (filename == kAcrobatReaderPlugin) {
|
| // Check for the version number above or equal 9.
|
| std::vector<std::wstring> version;
|
| - SplitString(plugin_info.version, L'.', &version);
|
| + base::SplitString(plugin_info.version, L'.', &version);
|
| if (version.size() > 0) {
|
| int major;
|
| base::StringToInt(version[0], &major);
|
|
|