[safe_browsing] Remove unused ContainsBrowseUrl() parameter.
[chromium-blink-merge.git] / ui / base / ui_base_switches_util.cc
blob3089607af86617537edc617cf670492488a10453
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"
10 namespace switches {
12 bool IsTouchDragDropEnabled() {
13 #if defined(OS_CHROMEOS)
14 return !CommandLine::ForCurrentProcess()->HasSwitch(
15 switches::kDisableTouchDragDrop);
16 #else
17 return CommandLine::ForCurrentProcess()->HasSwitch(
18 switches::kEnableTouchDragDrop);
19 #endif
22 bool IsTouchEditingEnabled() {
23 #if defined(OS_CHROMEOS)
24 return !CommandLine::ForCurrentProcess()->HasSwitch(
25 switches::kDisableTouchEditing);
26 #else
27 return CommandLine::ForCurrentProcess()->HasSwitch(
28 switches::kEnableTouchEditing);
29 #endif
32 } // namespace switches