// Copyright 2019 The Chromium Authors // 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_TYPE_H_ #define BASE_MESSAGE_LOOP_MESSAGE_PUMP_TYPE_H_ #include "build/build_config.h" namespace base { // A MessagePump has a particular type, which indicates the set of // asynchronous events it may process in addition to tasks and timers. enum class MessagePumpType { … }; } // namespace base #endif // BASE_MESSAGE_LOOP_MESSAGE_PUMP_TYPE_H_