| Index: chrome/browser/tab_contents/render_view_context_menu.cc
|
| diff --git a/chrome/browser/tab_contents/render_view_context_menu.cc b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| index 9d22b4c0f8c667dbbbdd2f67172dc7feda763142..8dc404072037e5893a183e466cf3d0d9701f9e00 100644
|
| --- a/chrome/browser/tab_contents/render_view_context_menu.cc
|
| +++ b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| @@ -372,7 +372,7 @@ void DevToolsInspectElementAt(RenderViewHost* rvh, int x, int y) {
|
| // Helper function to escape "&" as "&&".
|
| void EscapeAmpersands(base::string16* text) {
|
| const char16 ampersand[] = {'&', 0};
|
| - base::ReplaceChars(*text, ampersand, ASCIIToUTF16("&&"), text);
|
| + base::ReplaceChars(*text, ampersand, base::ASCIIToUTF16("&&"), text);
|
| }
|
|
|
| } // namespace
|
| @@ -1016,7 +1016,7 @@ void RenderViewContextMenu::AppendSearchProvider() {
|
| return;
|
|
|
| base::ReplaceChars(params_.selection_text, AutocompleteMatch::kInvalidChars,
|
| - ASCIIToUTF16(" "), ¶ms_.selection_text);
|
| + base::ASCIIToUTF16(" "), ¶ms_.selection_text);
|
|
|
| AutocompleteMatch match;
|
| AutocompleteClassifierFactory::GetForProfile(profile_)->Classify(
|
|
|