| Index: ash/display/display_manager.h
|
| diff --git a/ash/display/display_manager.h b/ash/display/display_manager.h
|
| index 545239fd790769fd988985c34ce0409e3a9cba41..0dc917a7ea39b4fe7c9e505c6efd8f9761006789 100644
|
| --- a/ash/display/display_manager.h
|
| +++ b/ash/display/display_manager.h
|
| @@ -70,13 +70,9 @@ class ASH_EXPORT DisplayManager
|
| // 1) EXTENDED mode extends the desktop to the second dislpay.
|
| // 2) MIRRORING mode copies the content of the primary display to
|
| // the 2nd display. (Software Mirroring).
|
| - // 3) In VIRTUAL_KEYBOARD mode, the 2nd display is used as a
|
| - // dedicated display for virtual keyboard, and it is not
|
| - // recognized as a part of desktop.
|
| enum SecondDisplayMode {
|
| EXTENDED,
|
| - MIRRORING,
|
| - VIRTUAL_KEYBOARD
|
| + MIRRORING
|
| };
|
|
|
| // Returns the list of possible UI scales for the display.
|
| @@ -291,10 +287,6 @@ class ASH_EXPORT DisplayManager
|
| return second_display_mode_ == MIRRORING;
|
| };
|
|
|
| - bool virtual_keyboard_root_window_enabled() const {
|
| - return second_display_mode_ == VIRTUAL_KEYBOARD;
|
| - };
|
| -
|
| // Sets/gets second display mode.
|
| void SetSecondDisplayMode(SecondDisplayMode mode);
|
| SecondDisplayMode second_display_mode() const {
|
|
|