// Copyright 2013 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. #ifndef QUICHE_QUIC_CORE_QUIC_ALARM_H_ #define QUICHE_QUIC_CORE_QUIC_ALARM_H_ #include "quiche/quic/core/quic_arena_scoped_ptr.h" #include "quiche/quic/core/quic_connection_context.h" #include "quiche/quic/core/quic_time.h" #include "quiche/quic/platform/api/quic_export.h" namespace quic { // Abstract class which represents an alarm which will go off at a // scheduled time, and execute the |OnAlarm| method of the delegate. // An alarm may be cancelled, in which case it may or may not be // removed from the underlying scheduling system, but in either case // the task will not be executed. class QUICHE_EXPORT QuicAlarm { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_QUIC_ALARM_H_