#ifndef CHROME_BROWSER_SCREEN_AI_PUBLIC_OPTICAL_CHARACTER_RECOGNIZER_H_
#define CHROME_BROWSER_SCREEN_AI_PUBLIC_OPTICAL_CHARACTER_RECOGNIZER_H_
#include <optional>
#include "base/memory/ref_counted_delete_on_sequence.h"
#include "base/scoped_observation.h"
#include "base/sequence_checker.h"
#include "base/threading/sequence_bound.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_observer.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/screen_ai/public/mojom/screen_ai_service.mojom.h"
namespace {
class SequenceBoundReceiver;
}
namespace screen_ai {
class OpticalCharacterRecognizer
: public ProfileObserver,
public base::RefCountedDeleteOnSequence<OpticalCharacterRecognizer> { … };
}
#endif