| Index: chrome/browser/metrics/omnibox_metrics_provider.cc
|
| diff --git a/chrome/browser/metrics/omnibox_metrics_provider.cc b/chrome/browser/metrics/omnibox_metrics_provider.cc
|
| index 6fc3589a5fd2b86619ddaf1743d72ed0389272b8..ca2f4661b9be246c195d520a7a0f0e3fe94cccbf 100644
|
| --- a/chrome/browser/metrics/omnibox_metrics_provider.cc
|
| +++ b/chrome/browser/metrics/omnibox_metrics_provider.cc
|
| @@ -144,13 +144,8 @@ void OmniboxMetricsProvider::RecordOmniboxOpenedURL(const OmniboxLog& log) {
|
| // (as explained in omnibox_event.proto) even if it was not, because such
|
| // actions ignore the contents of the popup so it doesn't matter that it was
|
| // open.
|
| - const bool consider_popup_open = log.is_popup_open && !log.is_paste_and_go;
|
| - omnibox_event->set_is_popup_open(consider_popup_open);
|
| + omnibox_event->set_is_popup_open(log.is_popup_open && !log.is_paste_and_go);
|
| omnibox_event->set_is_paste_and_go(log.is_paste_and_go);
|
| - if (consider_popup_open) {
|
| - omnibox_event->set_is_top_result_hidden_in_dropdown(
|
| - log.result.ShouldHideTopMatch());
|
| - }
|
|
|
| for (AutocompleteResult::const_iterator i(log.result.begin());
|
| i != log.result.end(); ++i) {
|
|
|