blob: e529a7c8d9e371cb5a34ea77a62afec28c0815f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// Copyright (c) 2013 The Chromium 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 "ui/base/ui_base_switches_util.h"
#include "base/command_line.h"
#include "ui/base/ui_base_switches.h"
namespace switches {
bool IsLinkDisambiguationPopupEnabled() {
#if defined(OS_ANDROID)
return true;
#else
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableLinkDisambiguationPopup)) {
return true;
}
return false;
#endif
}
bool IsTouchDragDropEnabled() {
#if defined(OS_CHROMEOS)
return !base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableTouchDragDrop);
#else
return base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableTouchDragDrop);
#endif
}
bool IsTouchEditingEnabled() {
#if defined(USE_AURA)
return !base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableTouchEditing);
#else
return base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableTouchEditing);
#endif
}
bool IsTouchFeedbackEnabled() {
static bool touch_feedback_enabled =
!base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableTouchFeedback);
return touch_feedback_enabled;
}
} // namespace switches
|