| Index: content/renderer/render_frame_impl.cc
|
| diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
|
| index cb58d67c495035e04fc7e8ab1b44e6feebd5e39e..51a0a8a7090803d4550767e459c4375d604d07da 100644
|
| --- a/content/renderer/render_frame_impl.cc
|
| +++ b/content/renderer/render_frame_impl.cc
|
| @@ -3232,14 +3232,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) {
|
|
|