// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Do not edit this file manually. See README.chromium for details on
// how to edit this file.

syntax = 'proto2';

option optimize_for = LITE_RUNTIME;
option java_package = 'org.chromium.components.omnibox';
option java_outer_classname = 'NavigationalIntentProto';

package omnibox;

// Navigational intent values (bucketized) for NAV & QUERY suggestions in the
// Chrome Omnibox.
enum NavigationalIntent {
  NAV_INTENT_NONE = 0;
  NAV_INTENT_LOW = 1;
  NAV_INTENT_MEDIUM = 2;
  NAV_INTENT_HIGH = 3;
}
