// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_BASE_BACKOFF_ENTRY_SERIALIZER_H_ #define NET_BASE_BACKOFF_ENTRY_SERIALIZER_H_ #include <memory> #include "base/time/time.h" #include "base/values.h" #include "net/base/backoff_entry.h" #include "net/base/net_export.h" namespace base { class TickClock; } namespace net { enum SerializationFormatVersion { … }; // Serialize or deserialize a BackoffEntry, so it can persist beyond the // lifetime of the browser. class NET_EXPORT BackoffEntrySerializer { … }; } // namespace net #endif // NET_BASE_BACKOFF_ENTRY_SERIALIZER_H_