chromium/ui/ozone/demo/demo_window.h

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

#ifndef UI_OZONE_DEMO_DEMO_WINDOW_H_
#define UI_OZONE_DEMO_DEMO_WINDOW_H_

#include <memory>

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
#include "ui/platform_window/platform_window.h"
#include "ui/platform_window/platform_window_delegate.h"

namespace ui {

class Event;
class Renderer;
class RendererFactory;
class WindowManager;

class DemoWindow : public PlatformWindowDelegate {};

}  // namespace ui

#endif  // UI_OZONE_DEMO_DEMO_WINDOW_H_