#ifndef COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_APP_STORAGE_APP_STORAGE_FILE_HANDLER_H_
#define COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_APP_STORAGE_APP_STORAGE_FILE_HANDLER_H_
#include <memory>
#include <set>
#include <vector>
#include "base/component_export.h"
#include "base/files/file_path.h"
#include "base/memory/ref_counted_delete_on_sequence.h"
#include "base/sequence_checker.h"
#include "base/task/sequenced_task_runner_helpers.h"
#include "base/values.h"
#include "components/services/app_service/public/cpp/app.h"
namespace base {
class SequencedTaskRunner;
}
namespace apps {
class COMPONENT_EXPORT(APP_UPDATE) AppStorageFileHandler
: public base::RefCountedDeleteOnSequence<AppStorageFileHandler> { … };
}
#endif