Index: content/browser/frame_host/navigator_impl.cc |
=================================================================== |
--- content/browser/frame_host/navigator_impl.cc (revision 276109) |
+++ content/browser/frame_host/navigator_impl.cc (working copy) |
@@ -543,7 +543,7 @@ |
bool NavigatorImpl::ShouldAssignSiteForURL(const GURL& url) { |
// about:blank should not "use up" a new SiteInstance. The SiteInstance can |
// still be used for a normal web site. |
- if (url == GURL(kAboutBlankURL)) |
+ if (url == GURL(url::kAboutBlankURL)) |
return false; |
// The embedder will then have the opportunity to determine if the URL |
@@ -596,7 +596,7 @@ |
GetSiteInstance(); |
if (!GetContentClient()->browser()->ShouldAllowOpenURL( |
current_site_instance, url)) { |
- dest_url = GURL(kAboutBlankURL); |
+ dest_url = GURL(url::kAboutBlankURL); |
} |
int64 frame_tree_node_id = -1; |