mirror of https://github.com/electron/electron
18 lines
513 B
C++
18 lines
513 B
C++
// Copyright 2024 Microsoft GmbH.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/ui/views/caption_button_placeholder_container.h"
|
|
|
|
#include "ui/base/metadata/metadata_impl_macros.h"
|
|
|
|
CaptionButtonPlaceholderContainer::CaptionButtonPlaceholderContainer() {
|
|
SetPaintToLayer();
|
|
}
|
|
|
|
CaptionButtonPlaceholderContainer::~CaptionButtonPlaceholderContainer() =
|
|
default;
|
|
|
|
BEGIN_METADATA(CaptionButtonPlaceholderContainer)
|
|
END_METADATA
|