// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SESSIONS_CORE_COMMAND_STORAGE_MANAGER_H_ #define COMPONENTS_SESSIONS_CORE_COMMAND_STORAGE_MANAGER_H_ #include <stddef.h> #include <memory> #include <vector> #include "base/files/file_path.h" #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "base/memory/ref_counted.h" #include "base/memory/weak_ptr.h" #include "base/task/sequenced_task_runner.h" #include "components/sessions/core/sessions_export.h" namespace sessions { class CommandStorageManagerDelegate; class SessionCommand; class CommandStorageBackend; // CommandStorageManager is responsible for reading/writing SessionCommands // to disk. SessionCommands are used to save and restore the state of the // browser. CommandStorageManager runs on the main thread and uses // CommandStorageBackend (which runs on a background task runner) for the actual // reading/writing. In hopes of minimizing IO, SessionCommands are queued up // and processed after a delay. class SESSIONS_EXPORT CommandStorageManager { … }; } // namespace sessions #endif // COMPONENTS_SESSIONS_CORE_COMMAND_STORAGE_MANAGER_H_