Index: content/renderer/render_frame_impl.cc |
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc |
index b93c8ed0d153210c08025355fd6c4e3a0d9ae3fe..25fcae6e41cfb3194866b9cf8b73b95ccc9d7b83 100644 |
--- a/content/renderer/render_frame_impl.cc |
+++ b/content/renderer/render_frame_impl.cc |
@@ -3200,14 +3200,14 @@ WebNavigationPolicy RenderFrameImpl::DecidePolicyForNavigation( |
(frame->isViewSourceModeEnabled() && |
type != blink::WebNavigationTypeReload); |
- if (!should_fork && url.SchemeIs(kFileScheme)) { |
+ if (!should_fork && url.SchemeIs(url::kFileScheme)) { |
// Fork non-file to file opens. Check the opener URL if this is the |
// initial navigation in a newly opened window. |
GURL source_url(old_url); |
if (is_initial_navigation && source_url.is_empty() && frame->opener()) |
source_url = frame->opener()->top()->document().url(); |
DCHECK(!source_url.is_empty()); |
- should_fork = !source_url.SchemeIs(kFileScheme); |
+ should_fork = !source_url.SchemeIs(url::kFileScheme); |
} |
if (!should_fork) { |