OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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. |
| 4 |
| 5 #include "ui/keyboard/scoped_keyboard_disabler.h" |
| 6 |
| 7 #include "ui/keyboard/keyboard_util.h" |
| 8 |
| 9 namespace keyboard { |
| 10 |
| 11 ScopedKeyboardDisabler::ScopedKeyboardDisabler() { |
| 12 force_disable_keyboard_state_ = keyboard::GetForceDisableVirtualKeyboard(); |
| 13 } |
| 14 |
| 15 ScopedKeyboardDisabler::~ScopedKeyboardDisabler() { |
| 16 SetForceDisableVirtualKeyboard(force_disable_keyboard_state_); |
| 17 } |
| 18 |
| 19 void ScopedKeyboardDisabler::SetForceDisableVirtualKeyboardScoped( |
| 20 bool disable) { |
| 21 SetForceDisableVirtualKeyboard(disable); |
| 22 } |
| 23 |
| 24 } // namespace keyboard |
OLD | NEW |