diff options
Diffstat (limited to 'chrome/browser/tab_contents/render_view_context_menu.cc')
-rw-r--r-- | chrome/browser/tab_contents/render_view_context_menu.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/render_view_context_menu.cc b/chrome/browser/tab_contents/render_view_context_menu.cc index 9d22b4c..8dc4040 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( |