Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / ui / base / ime / input_method_mac.mm
blobc4b55c984d93082e905544ba56eac4e885979be3
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 bool InputMethodMac::DispatchKeyEvent(const ui::KeyEvent& event) {
22   // IME processing on the Mac does not go through this path.
23   NOTREACHED();
24   return false;
27 void InputMethodMac::OnCaretBoundsChanged(const TextInputClient* client) {
30 void InputMethodMac::CancelComposition(const TextInputClient* client) {
33 void InputMethodMac::OnInputLocaleChanged() {
36 std::string InputMethodMac::GetInputLocale() {
37   return "";
40 bool InputMethodMac::IsActive() {
41   return true;
44 bool InputMethodMac::IsCandidatePopupOpen() const {
45   // There seems to be no way to tell if a candidate window is open.
46   return false;
49 }  // namespace ui