// Copyright 2018 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_EXTRAS_PRELOAD_DATA_DECODER_H_ #define NET_EXTRAS_PRELOAD_DATA_DECODER_H_ #include <stdint.h> #include <string> #include "base/memory/raw_ptr.h" namespace net::extras { // Decodes an entry from preloaded data. // Clients must implement ReadEntry() method to read the specific type of data // they are interested in. class PreloadDecoder { … }; } // namespace net::extras #endif // NET_EXTRAS_PRELOAD_DATA_DECODER_H_