| Index: chrome/browser/tab_contents/spelling_menu_observer_browsertest.cc
|
| diff --git a/chrome/browser/tab_contents/spelling_menu_observer_browsertest.cc b/chrome/browser/tab_contents/spelling_menu_observer_browsertest.cc
|
| index 940c4f4273de9bde88b8ede94cc92d13a4b3194e..c523a435be86c27a178c82b2eea28bb862818f84 100644
|
| --- a/chrome/browser/tab_contents/spelling_menu_observer_browsertest.cc
|
| +++ b/chrome/browser/tab_contents/spelling_menu_observer_browsertest.cc
|
| @@ -225,10 +225,10 @@ class SpellingMenuObserverTest : public InProcessBrowserTest {
|
| void InitMenu(const char* word, const char* suggestion) {
|
| content::ContextMenuParams params;
|
| params.is_editable = true;
|
| - params.misspelled_word = ASCIIToUTF16(word);
|
| + params.misspelled_word = base::ASCIIToUTF16(word);
|
| params.dictionary_suggestions.clear();
|
| if (suggestion)
|
| - params.dictionary_suggestions.push_back(ASCIIToUTF16(suggestion));
|
| + params.dictionary_suggestions.push_back(base::ASCIIToUTF16(suggestion));
|
| observer_->InitMenu(params);
|
| }
|
|
|
|
|