#ifndef CHROME_BROWSER_ASH_INPUT_METHOD_EDITOR_EVENT_PROXY_H_
#define CHROME_BROWSER_ASH_INPUT_METHOD_EDITOR_EVENT_PROXY_H_
#include <string>
#include "chromeos/ash/services/orca/public/mojom/orca_service.mojom.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"
namespace ash::input_method {
class EditorEventProxy {
public:
explicit EditorEventProxy(
mojo::PendingAssociatedRemote<orca::mojom::EditorEventSink> remote);
~EditorEventProxy();
void OnSurroundingTextChanged(orca::mojom::ContextPtr context);
private:
mojo::AssociatedRemote<orca::mojom::EditorEventSink>
editor_event_sink_remote_;
};
}
#endif