// 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 = 'proto3';

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

package omnibox;

// Configuration for a section in the menu.
// Next ID: 2
// LINT.IfChange(SectionConfig)
message SectionConfig {
  // The header text for the section.
  string header = 1;
}
// LINT.ThenChange(//components/omnibox/composebox/composebox_query.mojom:SectionConfig)
