| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_IN_MEMORY_STORE_H_ | |
| 6 #define COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_IN_MEMORY_STORE_H_ | |
| 7 | |
| 8 #include "components/offline_pages/core/prefetch/prefetch_store.h" | |
| 9 | |
| 10 namespace offline_pages { | |
| 11 | |
| 12 // A PrefetchStore implementation that keeps all persisted data in memory. | |
| 13 class PrefetchInMemoryStore : public PrefetchStore { | |
| 14 public: | |
| 15 PrefetchInMemoryStore(); | |
| 16 ~PrefetchInMemoryStore() override; | |
| 17 }; | |
| 18 | |
| 19 } // namespace offline_pages | |
| 20 | |
| 21 #endif // COMPONENTS_OFFLINE_PAGES_CORE_PREFETCH_PREFETCH_IN_MEMORY_STORE_H_ | |
| OLD | NEW |