chromium/ui/ozone/public/platform_utils.h

// Copyright 2021 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_PUBLIC_PLATFORM_UTILS_H_
#define UI_OZONE_PUBLIC_PLATFORM_UTILS_H_

#include <cstdint>
#include <memory>
#include <string>

#include "base/component_export.h"

namespace gfx {
class ImageSkia;
}

namespace ui {

class KeyEvent;

// Platform-specific general util functions that didn't find their way to any
// other existing utilities, but they are required to be accessed outside
// Ozone.
class COMPONENT_EXPORT(OZONE_BASE) PlatformUtils {};

}  // namespace ui

#endif  // UI_OZONE_PUBLIC_PLATFORM_UTILS_H_