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

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

Issue 319523005: Omnibox: Combine Two Input Type Enums into One (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove blank line Created 6 years, 6 months 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.h
diff --git a/chrome/browser/omnibox/omnibox_log.h b/chrome/browser/omnibox/omnibox_log.h
index 3b5d2eb674a0275e275b2bbb01adb8eaf489bfd7..ae54bdc743c618f7840658349acd41a7923d85aa 100644
--- a/chrome/browser/omnibox/omnibox_log.h
+++ b/chrome/browser/omnibox/omnibox_log.h
@@ -12,6 +12,7 @@
#include "chrome/browser/autocomplete/autocomplete_input.h"
#include "chrome/browser/autocomplete/autocomplete_provider.h"
#include "chrome/browser/sessions/session_id.h"
+#include "components/metrics/proto/omnibox_input_type.pb.h"
class AutocompleteResult;
@@ -21,7 +22,7 @@ struct OmniboxLog {
OmniboxLog(
const base::string16& text,
bool just_deleted_text,
- AutocompleteInput::Type input_type,
+ metrics::OmniboxInputType::Type input_type,
bool is_popup_open,
size_t selected_index,
bool is_paste_and_go,
@@ -41,7 +42,7 @@ struct OmniboxLog {
bool just_deleted_text;
// The detected type of the user's input.
- AutocompleteInput::Type input_type;
+ metrics::OmniboxInputType::Type input_type;
// True if the popup is open.
bool is_popup_open;

Powered by Google App Engine
This is Rietveld 408576698