#ifndef COMPONENTS_USER_ANNOTATIONS_USER_ANNOTATIONS_SERVICE_H_
#define COMPONENTS_USER_ANNOTATIONS_USER_ANNOTATIONS_SERVICE_H_
#include "base/files/file_path.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/sequence_bound.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/optimization_guide/core/optimization_guide_model_executor.h"
namespace autofill {
class FormData;
}
namespace optimization_guide::proto {
class AXTreeUpdate;
class UserAnnotationsEntry;
}
namespace user_annotations {
class UserAnnotationsDatabase;
struct Entry;
class UserAnnotationsService : public KeyedService { … };
}
#endif