// Copyright 2013 The Flutter 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 FLUTTER_FML_PLATFORM_DARWIN_MESSAGE_LOOP_DARWIN_H_ #define FLUTTER_FML_PLATFORM_DARWIN_MESSAGE_LOOP_DARWIN_H_ #include #include #include "flutter/fml/macros.h" #include "flutter/fml/message_loop_impl.h" #include "flutter/fml/platform/darwin/cf_utils.h" namespace fml { class MessageLoopDarwin : public MessageLoopImpl { private: std::atomic_bool running_; CFRef delayed_wake_timer_; CFRef loop_; MessageLoopDarwin(); ~MessageLoopDarwin() override; // |fml::MessageLoopImpl| void Run() override; // |fml::MessageLoopImpl| void Terminate() override; // |fml::MessageLoopImpl| void WakeUp(fml::TimePoint time_point) override; static void OnTimerFire(CFRunLoopTimerRef timer, MessageLoopDarwin* loop); FML_FRIEND_MAKE_REF_COUNTED(MessageLoopDarwin); FML_FRIEND_REF_COUNTED_THREAD_SAFE(MessageLoopDarwin); FML_DISALLOW_COPY_AND_ASSIGN(MessageLoopDarwin); }; } // namespace fml #endif // FLUTTER_FML_PLATFORM_DARWIN_MESSAGE_LOOP_DARWIN_H_