// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_CHIP_BUTTON_H_ #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_CHIP_BUTTON_H_ #include "chrome/browser/ui/views/toolbar/toolbar_button.h" #include "ui/base/metadata/metadata_header_macros.h" class ToolbarChipButton : public ToolbarButton { … }; BEGIN_VIEW_BUILDER(/* no export */, ToolbarChipButton, ToolbarButton) VIEW_BUILDER_PROPERTY(std::optional<ToolbarButton::Edge>, FlatEdge) END_VIEW_BUILDER DEFINE_VIEW_BUILDER(…) #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_CHIP_BUTTON_H_