chromium/chrome/browser/ui/views/web_apps/frame_toolbar/web_app_content_settings_container.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/views/web_apps/frame_toolbar/web_app_content_settings_container.h"

#include "ui/base/hit_test.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/compositor/layer.h"
#include "ui/compositor/scoped_layer_animation_settings.h"
#include "ui/views/border.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/window/custom_frame_view.h"
#include "ui/views/window/hit_test_utils.h"

namespace {

constexpr base::TimeDelta kContentSettingsFadeInDuration =;

}  // namespace

WebAppContentSettingsContainer::WebAppContentSettingsContainer(
    IconLabelBubbleView::Delegate* icon_label_bubble_delegate,
    ContentSettingImageView::Delegate* content_setting_image_delegate) {}

WebAppContentSettingsContainer::~WebAppContentSettingsContainer() = default;

void WebAppContentSettingsContainer::UpdateContentSettingViewsVisibility() {}

void WebAppContentSettingsContainer::SetIconColor(SkColor icon_color) {}

void WebAppContentSettingsContainer::SetUpForFadeIn() {}

void WebAppContentSettingsContainer::FadeIn() {}

void WebAppContentSettingsContainer::EnsureVisible() {}

BEGIN_METADATA()