chromium/content/web_test/renderer/text_input_controller.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_WEB_TEST_RENDERER_TEXT_INPUT_CONTROLLER_H_
#define CONTENT_WEB_TEST_RENDERER_TEXT_INPUT_CONTROLLER_H_

#include <string>
#include <vector>

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"

namespace blink {
class WebInputMethodController;
class WebLocalFrame;
class WebView;
}  // namespace blink

namespace content {

class WebFrameTestProxy;

// TextInputController is bound to window.textInputController in Javascript
// when content_shell is running. Web tests use it to exercise various
// corners of text input.
class TextInputController {};

}  // namespace content

#endif  // CONTENT_WEB_TEST_RENDERER_TEXT_INPUT_CONTROLLER_H_