Index: chrome/browser/ui/omnibox/omnibox_edit_model.cc |
diff --git a/chrome/browser/ui/omnibox/omnibox_edit_model.cc b/chrome/browser/ui/omnibox/omnibox_edit_model.cc |
index 7743ca534c392f550492cc0ea32472ebef8fafa4..0893a933ce550ddad8273a172c858ae72499119e 100644 |
--- a/chrome/browser/ui/omnibox/omnibox_edit_model.cc |
+++ b/chrome/browser/ui/omnibox/omnibox_edit_model.cc |
@@ -435,10 +435,10 @@ void OmniboxEditModel::AdjustTextForCopy(int sel_min, |
// entire host, and the user hasn't edited the host or manually removed the |
// scheme. |
GURL perm_url(PermanentURL()); |
- if (perm_url.SchemeIs(chrome::kHttpScheme) && |
- url->SchemeIs(chrome::kHttpScheme) && perm_url.host() == url->host()) { |
+ if (perm_url.SchemeIs(content::kHttpScheme) && |
+ url->SchemeIs(content::kHttpScheme) && perm_url.host() == url->host()) { |
*write_url = true; |
- string16 http = ASCIIToUTF16(chrome::kHttpScheme) + |
+ string16 http = ASCIIToUTF16(content::kHttpScheme) + |
ASCIIToUTF16(content::kStandardSchemeSeparator); |
if (text->compare(0, http.length(), http) != 0) |
*text = http + *text; |