diff options
Diffstat (limited to 'chrome/renderer')
-rw-r--r-- | chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc | 4 | ||||
-rw-r--r-- | chrome/renderer/webplugin_delegate_proxy.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc b/chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc index ed0fa79..d82734c 100644 --- a/chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc +++ b/chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc @@ -125,8 +125,8 @@ TEST(SpellcheckWordIteratorTest, SplitWord) { kTestCases[i].allow_contraction)); std::vector<string16> expected_words; - SplitString(WideToUTF16(kTestCases[i].expected_words), ' ', - &expected_words); + base::SplitString( + WideToUTF16(kTestCases[i].expected_words), ' ', &expected_words); string16 actual_word; int actual_start, actual_end; 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")) { |