Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / chromeos / input_method / input_method_delegate_impl.h
blobf4e1db651aca574fa3f6ecacd9e30900d223b4e1
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_CHROMEOS_INPUT_METHOD_INPUT_METHOD_DELEGATE_IMPL_H_
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_DELEGATE_IMPL_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "ui/base/ime/chromeos/input_method_delegate.h"
14 namespace chromeos {
15 namespace input_method {
17 // Accesses the hardware keyboard layout and application locale from the
18 // BrowserProcess.
19 class InputMethodDelegateImpl : public InputMethodDelegate {
20 public:
21 InputMethodDelegateImpl();
22 ~InputMethodDelegateImpl() override;
24 // InputMethodDelegate implementation.
25 std::string GetHardwareKeyboardLayouts() const override;
26 base::string16 GetLocalizedString(int resource_id) const override;
27 base::string16 GetDisplayLanguageName(
28 const std::string& language_code) const override;
29 void SetHardwareKeyboardLayoutForTesting(const std::string& layout) override;
31 private:
32 DISALLOW_COPY_AND_ASSIGN(InputMethodDelegateImpl);
35 } // namespace input_method
36 } // namespace chromeos
38 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_DELEGATE_IMPL_H_