| Index: chrome/installer/util/compat_checks.cc
|
| diff --git a/chrome/installer/util/compat_checks.cc b/chrome/installer/util/compat_checks.cc
|
| index 901e1baa734dacc7a1235bbcadb72735298c95cc..f84a27f0495eea5383081b18d2c9f5ae11e81ee8 100644
|
| --- a/chrome/installer/util/compat_checks.cc
|
| +++ b/chrome/installer/util/compat_checks.cc
|
| @@ -26,7 +26,7 @@ std::wstring GetSEPVersion() {
|
| // does not fit the format.
|
| bool ParseSEPVersion(const std::wstring& version, int* v0, int* v1, int* v2) {
|
| std::vector<std::wstring> v;
|
| - SplitString(version, L'.', &v);
|
| + base::SplitString(version, L'.', &v);
|
| if (v.size() != 4)
|
| return false;
|
| if (!base::StringToInt(v[0], v0))
|
|
|