blob: 50d89c1a9b1575a896d7415081b1e5b8d2d66b6d [file] [log] [blame]
// Copyright 2016 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 CHROME_BROWSER_UI_VIEWS_IME_DRIVER_IME_DRIVER_MUS_H_
#define CHROME_BROWSER_UI_VIEWS_IME_DRIVER_IME_DRIVER_MUS_H_
#include <stdint.h>
#include <map>
#include <memory>
#include "services/ui/public/interfaces/ime/ime.mojom.h"
class IMEDriver : public ui::mojom::IMEDriver {
public:
IMEDriver();
~IMEDriver() override;
// Instantiate the IME driver and register it to the UI service.
static void Register();
private:
// ui::mojom::IMEDriver:
void StartSession(ui::mojom::StartSessionDetailsPtr details) override;
DISALLOW_COPY_AND_ASSIGN(IMEDriver);
};
#endif // CHROME_BROWSER_UI_VIEWS_IME_DRIVER_IME_DRIVER_MUS_H_