#ifndef UI_BASE_IME_INPUT_METHOD_BASE_H_
#define UI_BASE_IME_INPUT_METHOD_BASE_H_
#include <memory>
#include <vector>
#include "base/component_export.h"
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "build/build_config.h"
#include "ui/base/ime/composition_text.h"
#include "ui/base/ime/input_method.h"
#include "ui/events/event_dispatcher.h"
namespace gfx {
class Rect;
}
namespace ui {
class InputMethodObserver;
class KeyEvent;
class TextInputClient;
class COMPONENT_EXPORT(UI_BASE_IME) InputMethodBase : public InputMethod { … };
}
#endif