chromium/chrome/browser/ui/views/bookmarks/bookmark_button.h

// 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.

#ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUTTON_H_
#define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUTTON_H_

#include "base/timer/timer.h"
#include "chrome/browser/preloading/chrome_preloading.h"
#include "content/public/browser/prerender_handle.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/views/controls/button/label_button.h"
#include "ui/views/controls/button/label_button_border.h"
#include "ui/views/view.h"

class Browser;

// Base class for buttons used on the bookmark bar.
class BookmarkButtonBase : public views::LabelButton {};

// Buttons used on the bookmark bar.
class BookmarkButton : public BookmarkButtonBase {};

#endif  // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUTTON_H_