| /* Copyright 2016 The Chromium OS Authors. All rights reserved. | |
| * Use of this source code is governed by a BSD-style license that can be | |
| * found in the LICENSE file. | |
| */ | |
| #include "hooks.h" | |
| /* Return 1 if in tablet mode, 0 otherwise */ | |
| static int tablet_mode = 1; | |
| int tablet_get_mode(void) | |
| { | |
| return tablet_mode; | |
| } | |
| void tablet_set_mode(int mode) | |
| { | |
| if (tablet_mode != mode) { | |
| tablet_mode = mode; | |
| hook_notify(HOOK_TABLET_MODE_CHANGE); | |
| } | |
| } | |