chromium/chrome/browser/enterprise/watermark/watermark_example.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_ENTERPRISE_WATERMARK_WATERMARK_EXAMPLE_H_
#define CHROME_BROWSER_ENTERPRISE_WATERMARK_WATERMARK_EXAMPLE_H_

#include "chrome/browser/enterprise/watermark/watermark_view.h"
#include "ui/views/controls/slider.h"
#include "ui/views/controls/textarea/textarea.h"
#include "ui/views/controls/textfield/textfield_controller.h"
#include "ui/views/examples/example_base.h"
#include "ui/views/examples/views_examples_export.h"

namespace views {
class BoxLayoutView;
class Checkbox;
class Label;
}  // namespace views

struct SliderInfo {};

class VIEWS_EXAMPLES_EXPORT WatermarkExample
    : public views::examples::ExampleBase,
      public views::SliderListener,
      public views::TextfieldController {};

class WatermarkTextArea : public views::Textarea {};

#endif  // CHROME_BROWSER_ENTERPRISE_WATERMARK_WATERMARK_EXAMPLE_H_