Index: chrome/browser/search_engines/template_url_parser.cc |
diff --git a/chrome/browser/search_engines/template_url_parser.cc b/chrome/browser/search_engines/template_url_parser.cc |
index 5669a2cbe6b8fea5a98a68c2372d1585a8cf6c0f..6fe0b867a34c2d2b20c1fee81df6e9c1c2cf25a6 100644 |
--- a/chrome/browser/search_engines/template_url_parser.cc |
+++ b/chrome/browser/search_engines/template_url_parser.cc |
@@ -16,11 +16,11 @@ |
#include "chrome/browser/search_engines/search_terms_data.h" |
#include "chrome/browser/search_engines/template_url.h" |
#include "chrome/browser/search_engines/template_url_service.h" |
-#include "chrome/common/url_constants.h" |
#include "libxml/parser.h" |
#include "libxml/xmlwriter.h" |
#include "ui/gfx/favicon_size.h" |
#include "url/gurl.h" |
+#include "url/url_constants.h" |
namespace { |
@@ -246,7 +246,7 @@ void TemplateURLParsingContext::EndElementImpl(void* ctx, const xmlChar* name) { |
break; |
case TemplateURLParsingContext::IMAGE: { |
GURL image_url(base::UTF16ToUTF8(context->string_)); |
- if (image_url.SchemeIs(content::kDataScheme)) { |
+ if (image_url.SchemeIs(url::kDataScheme)) { |
// TODO (jcampan): bug 1169256: when dealing with data URL, we need to |
// decode the data URL in the renderer. For now, we'll just point to the |
// favicon from the URL. |