Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / ui / base / ime / input_method_mac.mm
blobff6118fa165dea974b03288be3ff0a48d5600a91
1 // Copyright 2014 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 #include "ui/base/ime/input_method_mac.h"
7 namespace ui {
9 InputMethodMac::InputMethodMac(internal::InputMethodDelegate* delegate) {
10   SetDelegate(delegate);
13 InputMethodMac::~InputMethodMac() {
16 bool InputMethodMac::OnUntranslatedIMEMessage(const base::NativeEvent& event,
17                                               NativeEventResult* result) {
18   return false;
21 void InputMethodMac::DispatchKeyEvent(ui::KeyEvent* event) {
22   // This is used on Mac only to dispatch events post-IME.
23   ignore_result(DispatchKeyEventPostIME(event));
26 void InputMethodMac::OnCaretBoundsChanged(const TextInputClient* client) {
29 void InputMethodMac::CancelComposition(const TextInputClient* client) {
32 void InputMethodMac::OnInputLocaleChanged() {
35 std::string InputMethodMac::GetInputLocale() {
36   return "";
39 bool InputMethodMac::IsCandidatePopupOpen() const {
40   // There seems to be no way to tell if a candidate window is open.
41   return false;
44 }  // namespace ui