// 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 REMOTING_SIGNALING_MESSAGE_TRACKER_H_ #define REMOTING_SIGNALING_MESSAGE_TRACKER_H_ #include <map> #include <string> #include "base/time/time.h" #include "base/timer/timer.h" namespace remoting { // FTL messaging doesn't guarantee a message won't be received more than once, // so this class helps deduplicating messages based on their message ID. class MessageTracker final { … }; } // namespace remoting #endif // REMOTING_SIGNALING_MESSAGE_TRACKER_H_