// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ #define UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ #include <stddef.h> #include <stdint.h> #include "base/memory/weak_ptr.h" #include "build/build_config.h" #include "build/chromeos_buildflags.h" #include "ui/base/ime/text_input_client.h" namespace ui { // Dummy implementation of TextInputClient. All functions do nothing. // TODO(crbug.com/1277388): Replace this class with FakeTextInputClient. class DummyTextInputClient : public TextInputClient { … }; } // namespace ui #endif // UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_