blob: de42f81dccfc88a2ae06a2678e3fc48937a67444 [file] [log] [blame]
// 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_FUCHSIA_MESSAGE_LOOP_FUCHSIA_H_
#define FLUTTER_FML_PLATFORM_FUCHSIA_MESSAGE_LOOP_FUCHSIA_H_
#include <lib/async-loop/cpp/loop.h>
#include <lib/async/cpp/wait.h>
#include <lib/zx/timer.h>
#include "flutter/fml/macros.h"
#include "flutter/fml/message_loop_impl.h"
namespace fml {
class MessageLoopFuchsia : public MessageLoopImpl {
private:
MessageLoopFuchsia();
~MessageLoopFuchsia() override;
void Run() override;
void Terminate() override;
void WakeUp(fml::TimePoint time_point) override;
async::Loop loop_;
std::unique_ptr<async::Wait> timer_wait_;
zx::timer timer_;
FML_FRIEND_MAKE_REF_COUNTED(MessageLoopFuchsia);
FML_FRIEND_REF_COUNTED_THREAD_SAFE(MessageLoopFuchsia);
FML_DISALLOW_COPY_AND_ASSIGN(MessageLoopFuchsia);
};
} // namespace fml
#endif // FLUTTER_FML_PLATFORM_FUCHSIA_MESSAGE_LOOP_FUCHSIA_H_