blob: 1d5f8b86a789692450fa634849cb55c2c67f7686 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_BASE_IME_LINUX_FAKE_INPUT_METHOD_CONTEXT_FACTORY_H_
#define UI_BASE_IME_LINUX_FAKE_INPUT_METHOD_CONTEXT_FACTORY_H_
#include "base/macros.h"
#include "ui/base/ime/linux/linux_input_method_context_factory.h"
#include "ui/base/ime/linux/ui_base_ime_linux_export.h"
namespace ui {
// An implementation of LinuxInputMethodContextFactory, which creates and
// returns FakeInputMethodContext's.
class UI_BASE_IME_LINUX_EXPORT FakeInputMethodContextFactory
: public LinuxInputMethodContextFactory {
public:
FakeInputMethodContextFactory();
~FakeInputMethodContextFactory() override;
// LinuxInputMethodContextFactory:
std::unique_ptr<LinuxInputMethodContext> CreateInputMethodContext(
LinuxInputMethodContextDelegate* delegate,
bool is_simple) const override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeInputMethodContextFactory);
};
} // namespace ui
#endif // UI_BASE_IME_LINUX_FAKE_INPUT_METHOD_CONTEXT_FACTORY_H_