blob: ba7d5502fe672a1ccdd9822bce63d273665af023 [file] [log] [blame]
// 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.
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;
}