| 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..c0c4941bc63741157c71757df1574efd9d6ab24d 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 "net/base/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 == net::kHttpScheme)
|
| return "80";
|
| - if (scheme == content::kHttpsScheme)
|
| + if (scheme == net::kHttpsScheme)
|
| return "443";
|
| NOTREACHED();
|
| return std::string();
|
|
|