Fix build break
[chromium-blink-merge.git] / ui / keyboard / keyboard_util.cc
blob8ccb44138291f4aa55de80a93cb846cfc5112f12
1 // Copyright (c) 2013 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/keyboard/keyboard_util.h"
7 #include "base/command_line.h"
8 #include "ui/keyboard/keyboard_switches.h"
10 namespace keyboard {
12 bool IsKeyboardEnabled() {
13 return CommandLine::ForCurrentProcess()->HasSwitch(
14 switches::kEnableVirtualKeyboard);
17 } // namespace keyboard