Index: chrome/browser/extensions/api/content_settings/content_settings_helpers.cc |
diff --git a/chrome/browser/extensions/api/content_settings/content_settings_helpers.cc b/chrome/browser/extensions/api/content_settings/content_settings_helpers.cc |
index 29af76ed5d8552f7c66b77cd99c38fdf0e260272..2b7d9d9cdbe1f281b62d1ef10e0ff3ea1bd28730 100644 |
--- a/chrome/browser/extensions/api/content_settings/content_settings_helpers.cc |
+++ b/chrome/browser/extensions/api/content_settings/content_settings_helpers.cc |
@@ -9,6 +9,7 @@ |
#include "base/memory/scoped_ptr.h" |
#include "content/public/common/url_constants.h" |
#include "extensions/common/url_pattern.h" |
+#include "url/url_constants.h" |
namespace { |
@@ -43,9 +44,9 @@ COMPILE_ASSERT(arraysize(kContentSettingNames) <= |
// TODO(bauerb): Move this someplace where it can be reused. |
std::string GetDefaultPort(const std::string& scheme) { |
- if (scheme == content::kHttpScheme) |
+ if (scheme == url::kHttpScheme) |
return "80"; |
- if (scheme == content::kHttpsScheme) |
+ if (scheme == url::kHttpsScheme) |
return "443"; |
NOTREACHED(); |
return std::string(); |