Index: chrome/browser/ui/omnibox/location_bar_util.cc |
diff --git a/chrome/browser/ui/omnibox/location_bar_util.cc b/chrome/browser/ui/omnibox/location_bar_util.cc |
index 71220d3f05b4cdd2bfc63b80e92407890e5d31e8..8bfffbd498626677526610689013b8baa4220ecf 100644 |
--- a/chrome/browser/ui/omnibox/location_bar_util.cc |
+++ b/chrome/browser/ui/omnibox/location_bar_util.cc |
@@ -19,7 +19,7 @@ namespace location_bar_util { |
string16 CalculateMinString(const string16& description) { |
// Chop at the first '.' or whitespace. |
const size_t dot_index = description.find('.'); |
- const size_t ws_index = description.find_first_of(kWhitespaceUTF16); |
+ const size_t ws_index = description.find_first_of(base::kWhitespaceUTF16); |
size_t chop_index = std::min(dot_index, ws_index); |
string16 min_string; |
if (chop_index == string16::npos) { |