| OLD | NEW | 
|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #include "ui/events/ozone/layout/no/no_keyboard_layout_engine.h" | 5 #include "ui/events/ozone/layout/no/no_keyboard_layout_engine.h" | 
| 6 | 6 | 
| 7 namespace ui { | 7 namespace ui { | 
| 8 | 8 | 
| 9 bool NoKeyboardLayoutEngine::CanSetCurrentLayout() const { | 9 bool NoKeyboardLayoutEngine::CanSetCurrentLayout() const { | 
| 10   return false; | 10   return false; | 
| 11 } | 11 } | 
| 12 | 12 | 
| 13 bool NoKeyboardLayoutEngine::SetCurrentLayoutByName( | 13 bool NoKeyboardLayoutEngine::SetCurrentLayoutByName( | 
| 14     const std::string& layout_name) { | 14     const std::string& layout_name) { | 
| 15   return false; | 15   return false; | 
| 16 } | 16 } | 
| 17 | 17 | 
| 18 bool NoKeyboardLayoutEngine::UsesISOLevel5Shift() const { | 18 bool NoKeyboardLayoutEngine::UsesISOLevel5Shift() const { | 
| 19   return false; | 19   return false; | 
| 20 } | 20 } | 
| 21 | 21 | 
| 22 bool NoKeyboardLayoutEngine::UsesAltGr() const { | 22 bool NoKeyboardLayoutEngine::UsesAltGr() const { | 
| 23   return false; | 23   return false; | 
| 24 } | 24 } | 
| 25 | 25 | 
| 26 bool NoKeyboardLayoutEngine::Lookup(DomCode dom_code, | 26 bool NoKeyboardLayoutEngine::Lookup(DomCode dom_code, | 
| 27                                     int flags, | 27                                     int flags, | 
| 28                                     DomKey* dom_key, | 28                                     DomKey* dom_key, | 
| 29                                     KeyboardCode* key_code, | 29                                     KeyboardCode* key_code) const { | 
| 30                                     uint32* platform_keycode) const { |  | 
| 31   return false; | 30   return false; | 
| 32 } | 31 } | 
| 33 | 32 | 
| 34 }  // namespace ui | 33 }  // namespace ui | 
| OLD | NEW | 
|---|