Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2421)

Unified Diff: chrome/browser/omnibox/omnibox_log.cc

Issue 795343002: Omnibox Watcher: Don't Flag Incidents that are Paste+Enter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: grt's comments Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/omnibox/omnibox_log.cc
diff --git a/chrome/browser/omnibox/omnibox_log.cc b/chrome/browser/omnibox/omnibox_log.cc
index 90d4b7e9a6ac8b2f531e76e7311542b23f59c220..a1fa024fee05010ae32a30e9f1095705336593c0 100644
--- a/chrome/browser/omnibox/omnibox_log.cc
+++ b/chrome/browser/omnibox/omnibox_log.cc
@@ -11,6 +11,7 @@ OmniboxLog::OmniboxLog(
bool is_popup_open,
size_t selected_index,
bool is_paste_and_go,
+ bool last_action_was_paste,
SessionID::id_type tab_id,
metrics::OmniboxEventProto::PageClassification current_page_classification,
base::TimeDelta elapsed_time_since_user_first_modified_omnibox,
@@ -23,6 +24,7 @@ OmniboxLog::OmniboxLog(
is_popup_open(is_popup_open),
selected_index(selected_index),
is_paste_and_go(is_paste_and_go),
+ last_action_was_paste(last_action_was_paste),
tab_id(tab_id),
current_page_classification(current_page_classification),
elapsed_time_since_user_first_modified_omnibox(

Powered by Google App Engine
This is Rietveld 408576698