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

Unified Diff: components/metrics/proto/omnibox_input_type.proto

Issue 320713002: Revert of Omnibox: Combine Two Input Type Enums into One (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « components/metrics/proto/omnibox_event.proto ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/proto/omnibox_input_type.proto
diff --git a/components/metrics/proto/omnibox_input_type.proto b/components/metrics/proto/omnibox_input_type.proto
deleted file mode 100644
index 6a9b08ec90abade7b6da9ec764dbd146b3f356bc..0000000000000000000000000000000000000000
--- a/components/metrics/proto/omnibox_input_type.proto
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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.
-//
-// Stores information about an omnibox interaction.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-package metrics.OmniboxInputType;
-
-// What kind of input the user provided.
-// Note that the type below may be misleading. For example, "http:/" alone
-// cannot be opened as a URL, so it is marked as a QUERY; yet the user
-// probably intends to type more and have it eventually become a URL, so we
-// need to make sure we still run it through inline autocomplete.
-enum Type {
- // Empty input (should not reach here)
- INVALID = 0;
-
- // Valid input whose type cannot be determined
- UNKNOWN = 1;
-
- // DEPRECATED. Input autodetected as UNKNOWN, which the user wants to treat
- // as an URL by specifying a desired_tld.
- DEPRECATED_REQUESTED_URL = 2;
-
- // Input autodetected as a URL
- URL = 3;
-
- // Input autodetected as a query
- QUERY = 4;
-
- // Input forced to be a query by an initial '?'
- FORCED_QUERY = 5;
-}
« no previous file with comments | « components/metrics/proto/omnibox_event.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698