Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / ui / ash / ime_controller_chromeos.h
blob15480b0150ccc46eab2cc58b8eed2dc3dc102eaa
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_ASH_IME_CONTROLLER_CHROMEOS_H_
6 #define CHROME_BROWSER_UI_ASH_IME_CONTROLLER_CHROMEOS_H_
8 #include "ash/ime_control_delegate.h"
9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h"
12 // A class which controls ime when an IME shortcut key such as Control+space is
13 // pressed.
14 class ImeController : public ash::ImeControlDelegate {
15 public:
16 ImeController() {}
17 ~ImeController() override {}
19 // Overridden from ash::ImeControlDelegate:
20 bool CanCycleIme() override;
21 void HandleNextIme() override;
22 void HandlePreviousIme() override;
23 bool CanSwitchIme(const ui::Accelerator& accelerator) override;
24 void HandleSwitchIme(const ui::Accelerator& accelerator) override;
25 ui::Accelerator RemapAccelerator(const ui::Accelerator& accelerator) override;
27 private:
28 bool UsingFrenchInputMethod() const;
30 DISALLOW_COPY_AND_ASSIGN(ImeController);
33 #endif // CHROME_BROWSER_UI_ASH_IME_CONTROLLER_CHROMEOS_H_