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/base/ui_base_switches_util.h"
7 #include "base/command_line.h"
8 #include "ui/base/ui_base_switches.h"
12 bool IsTouchDragDropEnabled() {
13 #if defined(OS_CHROMEOS)
14 return !CommandLine::ForCurrentProcess()->HasSwitch(
15 switches::kDisableTouchDragDrop
);
17 return CommandLine::ForCurrentProcess()->HasSwitch(
18 switches::kEnableTouchDragDrop
);
22 bool IsTouchEditingEnabled() {
23 #if defined(OS_CHROMEOS)
24 return !CommandLine::ForCurrentProcess()->HasSwitch(
25 switches::kDisableTouchEditing
);
27 return CommandLine::ForCurrentProcess()->HasSwitch(
28 switches::kEnableTouchEditing
);
32 } // namespace switches