| Index: chrome/browser/autocomplete/history_provider_util.cc
|
| diff --git a/chrome/browser/autocomplete/history_provider_util.cc b/chrome/browser/autocomplete/history_provider_util.cc
|
| index 439248d6da234f68f3c75a9ee7a04b14f0f2cf93..d6452962acdbe840e44fa8a3cea9144916cebfe8 100644
|
| --- a/chrome/browser/autocomplete/history_provider_util.cc
|
| +++ b/chrome/browser/autocomplete/history_provider_util.cc
|
| @@ -12,8 +12,7 @@ HistoryMatch::HistoryMatch()
|
| : url_info(),
|
| input_location(base::string16::npos),
|
| match_in_scheme(false),
|
| - innermost_match(true),
|
| - promoted(false) {
|
| + innermost_match(true) {
|
| }
|
|
|
| HistoryMatch::HistoryMatch(const URLRow& url_info,
|
| @@ -23,8 +22,7 @@ HistoryMatch::HistoryMatch(const URLRow& url_info,
|
| : url_info(url_info),
|
| input_location(input_location),
|
| match_in_scheme(match_in_scheme),
|
| - innermost_match(innermost_match),
|
| - promoted(false) {
|
| + innermost_match(innermost_match) {
|
| }
|
|
|
| bool HistoryMatch::EqualsGURL(const HistoryMatch& h, const GURL& url) {
|
|
|