| Index: trunk/src/chrome/browser/history/visitsegment_database.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/history/visitsegment_database.cc (revision 289319)
|
| +++ trunk/src/chrome/browser/history/visitsegment_database.cc (working copy)
|
| @@ -108,7 +108,7 @@
|
| const char* host_c = host.c_str();
|
| // Remove www. to avoid some dups.
|
| if (static_cast<int>(host.size()) > kWWWDotLen &&
|
| - base::LowerCaseEqualsASCII(host_c, host_c + kWWWDotLen, kWWWDot)) {
|
| + LowerCaseEqualsASCII(host_c, host_c + kWWWDotLen, kWWWDot)) {
|
| r.SetHost(host.c_str(),
|
| url::Component(kWWWDotLen,
|
| static_cast<int>(host.size()) - kWWWDotLen));
|
|
|