// Copyright 2026 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 = 'PageVerticalProto';

package omnibox;

// The vertical information of a page.
// PageVertical is used to set the pageVertical= CGI parameter, introduced in
enum PageVertical {
  // Default value. This value should not be used in production.
  PAGE_VERTICAL_UNSPECIFIED = 0;
  // The page was in the Edu vertical.
  PAGE_VERTICAL_EDU = 1;
}
