chromium/content/shell/browser/shell_platform_data_aura.h

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

#ifndef CONTENT_SHELL_BROWSER_SHELL_PLATFORM_DATA_AURA_H_
#define CONTENT_SHELL_BROWSER_SHELL_PLATFORM_DATA_AURA_H_

#include <memory>

#include "build/build_config.h"
#include "ui/aura/window_tree_host.h"

namespace aura {
namespace client {
class CursorShapeClient;
class DefaultCaptureClient;
class FocusClient;
class WindowParentingClient;
}  // namespace client
}  // namespace aura

#if BUILDFLAG(IS_OZONE)
namespace aura {
class ScreenOzone;
}
#endif

namespace gfx {
class Size;
}

namespace content {

class ShellPlatformDataAura {};

}  // namespace content

#endif  // CONTENT_SHELL_BROWSER_SHELL_PLATFORM_DATA_AURA_H_