blob: bc2d4b96d4a8d5c2dc4e0284b5d478ee4fb8f602 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// 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.
#include "components/exo/wayland/wayland_watcher.h"
#include "base/message_loop/message_loop_current.h"
#include "components/exo/wayland/server.h"
namespace exo {
namespace wayland {
WaylandWatcher::WaylandWatcher(wayland::Server* server)
: controller_(FROM_HERE), server_(server) {
base::MessageLoopCurrentForUI::Get()->WatchFileDescriptor(
server_->GetFileDescriptor(),
true, // persistent
base::MessagePumpForUI::WATCH_READ, &controller_, this);
}
WaylandWatcher::~WaylandWatcher() {}
void WaylandWatcher::OnFileCanReadWithoutBlocking(int fd) {
server_->Dispatch(base::TimeDelta());
server_->Flush();
}
void WaylandWatcher::OnFileCanWriteWithoutBlocking(int fd) {
NOTREACHED();
}
} // namespace wayland
} // namespace exo
|