Index: content/browser/frame_host/navigator_impl.cc |
diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc |
index 8e704b1fc7d314d2bcda10d78ead7d017047e4a7..bc64b1c72a0f979fbe24546ad53689b95e09b6e5 100644 |
--- a/content/browser/frame_host/navigator_impl.cc |
+++ b/content/browser/frame_host/navigator_impl.cc |
@@ -679,7 +679,7 @@ void NavigatorImpl::DidNavigate( |
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(url::kAboutBlankURL)) |
+ if (url == url::kAboutBlankURL) |
return false; |
// The embedder will then have the opportunity to determine if the URL |