blob: 874eaae2bd63a203aa95d77841f9a351869f06d6 [file] [log] [blame]
// Copyright 2021 The Fuchsia 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 "src/ui/scenic/lib/input/gesture_contender.h"
namespace scenic_impl::input {
StreamId NewStreamId() {
static StreamId next_id = 1;
return next_id++;
}
} // namespace scenic_impl::input