mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
58 lines
1.9 KiB
C
58 lines
1.9 KiB
C
|
// Copyright 2018 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#ifndef BASE_MESSAGE_LOOP_MESSAGE_PUMP_FOR_UI_H_
|
||
|
#define BASE_MESSAGE_LOOP_MESSAGE_PUMP_FOR_UI_H_
|
||
|
|
||
|
// This header is a forwarding header to coalesce the various platform specific
|
||
|
// implementations of MessagePumpForUI.
|
||
|
|
||
|
#include "build/build_config.h"
|
||
|
|
||
|
#if defined(OS_WIN)
|
||
|
#include "base/message_loop/message_pump_win.h"
|
||
|
#elif defined(OS_ANDROID)
|
||
|
#include "base/message_loop/message_pump_android.h"
|
||
|
#elif defined(OS_MACOSX)
|
||
|
#include "base/message_loop/message_pump.h"
|
||
|
#elif defined(OS_NACL) || defined(OS_AIX)
|
||
|
// No MessagePumpForUI, see below.
|
||
|
#elif defined(USE_GLIB)
|
||
|
#include "base/message_loop/message_pump_glib.h"
|
||
|
#elif defined(OS_LINUX) || defined(OS_BSD)
|
||
|
#include "base/message_loop/message_pump_libevent.h"
|
||
|
#elif defined(OS_FUCHSIA)
|
||
|
#include "base/message_loop/message_pump_fuchsia.h"
|
||
|
#endif
|
||
|
|
||
|
namespace base {
|
||
|
|
||
|
#if defined(OS_WIN)
|
||
|
// Windows defines it as-is.
|
||
|
using MessagePumpForUI = MessagePumpForUI;
|
||
|
#elif defined(OS_ANDROID)
|
||
|
// Android defines it as-is.
|
||
|
using MessagePumpForUI = MessagePumpForUI;
|
||
|
#elif defined(OS_MACOSX)
|
||
|
// MessagePumpForUI isn't bound to a specific impl on Mac. While each impl can
|
||
|
// be represented by a plain MessagePump: MessagePumpMac::Create() must be used
|
||
|
// to instantiate the right impl.
|
||
|
using MessagePumpForUI = MessagePump;
|
||
|
#elif defined(OS_NACL) || defined(OS_AIX)
|
||
|
// Currently NaCl and AIX don't have a MessagePumpForUI.
|
||
|
// TODO(abarth): Figure out if we need this.
|
||
|
#elif defined(USE_GLIB)
|
||
|
using MessagePumpForUI = MessagePumpGlib;
|
||
|
#elif defined(OS_LINUX) || defined(OS_BSD)
|
||
|
using MessagePumpForUI = MessagePumpLibevent;
|
||
|
#elif defined(OS_FUCHSIA)
|
||
|
using MessagePumpForUI = MessagePumpFuchsia;
|
||
|
#else
|
||
|
#error Platform does not define MessagePumpForUI
|
||
|
#endif
|
||
|
|
||
|
} // namespace base
|
||
|
|
||
|
#endif // BASE_MESSAGE_LOOP_MESSAGE_PUMP_FOR_UI_H_
|