summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/tab_contents.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.cc')
-rw-r--r--chrome/browser/tab_contents/tab_contents.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
index 0e8471d..991b0e2 100644
--- a/chrome/browser/tab_contents/tab_contents.cc
+++ b/chrome/browser/tab_contents/tab_contents.cc
@@ -878,7 +878,7 @@ bool TabContents::FocusLocationBarByDefault() {
if (dom_ui)
return dom_ui->focus_location_bar_by_default();
NavigationEntry* entry = controller_.GetActiveEntry();
- if (entry && entry->url() == GURL("about:blank"))
+ if (entry && entry->url() == GURL(chrome::kAboutBlankURL))
return true;
return false;
}