#ifndef CONTENT_WEB_TEST_RENDERER_SPELL_CHECK_CLIENT_H_
#define CONTENT_WEB_TEST_RENDERER_SPELL_CHECK_CLIENT_H_
#include <stdint.h>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/web_test/renderer/web_test_spell_checker.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/platform/web_vector.h"
#include "third_party/blink/public/web/web_text_check_client.h"
#include "v8/include/v8.h"
namespace blink {
class WebLocalFrame;
class WebTextCheckingCompletion;
}
namespace content {
class SpellCheckClient : public blink::WebTextCheckClient { … };
}
#endif