blob: ea2f727c28d986c91feb301007dc80a2db2406cb [file] [log] [blame]
// Copyright 2012 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_EVENTS_PLATFORM_EVENT_H_
#define UI_EVENTS_PLATFORM_EVENT_H_
#include "build/build_config.h"
#if BUILDFLAG(IS_WIN)
#include "base/win/windows_types.h"
#elif BUILDFLAG(IS_MAC)
#if defined(__OBJC__)
@class NSEvent;
#else // __OBJC__
class NSEvent;
#endif // __OBJC__
#elif BUILDFLAG(IS_IOS)
#if defined(__OBJC__)
@class UIEvent;
#else // __OBJC__
class UIEvent;
#endif // __OBJC__
#endif
namespace ui {
class Event;
}
namespace ui {
// Cross platform typedefs for native event types.
#if BUILDFLAG(IS_OZONE)
using PlatformEvent = ui::Event*;
#elif BUILDFLAG(IS_WIN)
using PlatformEvent = CHROME_MSG;
#elif BUILDFLAG(IS_MAC)
using PlatformEvent = NSEvent*;
#elif BUILDFLAG(IS_IOS)
using PlatformEvent = UIEvent*;
#else
using PlatformEvent = void*;
#endif
} // namespace ui
#endif // UI_EVENTS_PLATFORM_EVENT_H_