blob: 99c66bb8e89bcd0bbadf2d967805660e12bcd7c5 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/omnibox/browser/history_match.h"
#include "base/check.h"
#include "base/trace_event/memory_usage_estimator.h"
namespace history {
HistoryMatch::HistoryMatch()
: input_location(std::u16string::npos),
match_in_scheme(false),
match_in_subdomain(false),
innermost_match(true) {}
bool HistoryMatch::EqualsGURL(const HistoryMatch& h, const GURL& url) {
return h.url_info.url() == url;
}
size_t HistoryMatch::EstimateMemoryUsage() const {
return base::trace_event::EstimateMemoryUsage(url_info);
}
bool HistoryMatch::IsHostOnly() const {
const GURL& gurl = url_info.url();
DCHECK(gurl.is_valid());
return (!gurl.has_path() || (gurl.path_piece() == "/")) &&
!gurl.has_query() && !gurl.has_ref();
}
} // namespace history