Index: chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc |
diff --git a/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc b/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc |
index 83562214c456526724909fb57112228a93827a72..cddd8d88bfb1cb893279612bfbadf24afe28aae8 100644 |
--- a/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc |
+++ b/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc |
@@ -7,6 +7,7 @@ |
#include "base/logging.h" |
#include "chrome/common/url_constants.h" |
#include "extensions/common/constants.h" |
+#include "url/url_constants.h" |
namespace extensions { |
@@ -14,14 +15,14 @@ namespace { |
// URL schemes for which we'll send events. |
const char* kValidSchemes[] = { |
- content::kChromeUIScheme, |
- content::kHttpScheme, |
- content::kHttpsScheme, |
- content::kFileScheme, |
- content::kFtpScheme, |
- content::kJavaScriptScheme, |
- content::kDataScheme, |
- content::kFileSystemScheme, |
+ content::kChromeUIScheme, |
+ url::kHttpScheme, |
+ url::kHttpsScheme, |
+ content::kFileScheme, |
+ content::kFtpScheme, |
+ content::kJavaScriptScheme, |
+ content::kDataScheme, |
+ content::kFileSystemScheme, |
}; |
} // namespace |