Index: chrome_frame/navigation_constraints.cc |
diff --git a/chrome_frame/navigation_constraints.cc b/chrome_frame/navigation_constraints.cc |
index 9b0bc715b5fe9ad95ac2a96a4abd6bbf4970e203..95586a64654b1e30d0b0f5584b01d206ab19d82b 100644 |
--- a/chrome_frame/navigation_constraints.cc |
+++ b/chrome_frame/navigation_constraints.cc |
@@ -32,7 +32,7 @@ bool NavigationConstraintsImpl::IsSchemeAllowed(const GURL& url) { |
// Additional checking for view-source. Allow only http and https |
// URLs in view source. |
- if (url.SchemeIs(chrome::kViewSourceScheme)) { |
+ if (url.SchemeIs(content::kViewSourceScheme)) { |
GURL sub_url(url.path()); |
if (sub_url.SchemeIs(chrome::kHttpScheme) || |
sub_url.SchemeIs(chrome::kHttpsScheme)) |