a7e909feffdb4fddddc5537f2d80e001ba116531
[platform/framework/web/crosswalk.git] / src / ui / app_list / app_list_switches.cc
1 // Copyright 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.
4
5 #include "ui/app_list/app_list_switches.h"
6
7 #include "base/command_line.h"
8
9 namespace app_list {
10 namespace switches {
11
12 // If set, folder will be disabled in app list UI.
13 const char kDisableFolderUI[] = "disable-app-list-folder-ui";
14
15 // If set, the voice search is disabled in app list UI.
16 const char kDisableVoiceSearch[] = "disable-app-list-voice-search";
17
18 // If set, the app info context menu item is available in the app list UI.
19 const char kEnableAppInfo[] = "enable-app-list-app-info";
20
21 // If set, the experimental app list will be used.
22 const char kEnableExperimentalAppList[] = "enable-experimental-app-list";
23
24 // If set, the experimental app list position will be used.
25 const char kEnableExperimentalAppListPosition[] =
26     "enable-experimental-app-list-position";
27
28 // If set, it will always listen to the audio locally and open the app-list
29 // when the hotword is recognized.
30 const char kEnableHotwordAlwaysOn[] = "enable-app-list-hotword-always-on";
31
32 // Folder UI is enabled by default.
33 bool IsFolderUIEnabled() {
34   return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableFolderUI);
35 }
36
37 bool IsVoiceSearchEnabled() {
38   // Speech recognition in AppList is only for ChromeOS right now.
39 #if defined(OS_CHROMEOS)
40   return !CommandLine::ForCurrentProcess()->HasSwitch(kDisableVoiceSearch);
41 #else
42   return false;
43 #endif
44 }
45
46 bool IsHotwordAlwaysOnEnabled() {
47 #if defined(OS_CHROMEOS)
48   return IsVoiceSearchEnabled() &&
49       CommandLine::ForCurrentProcess()->HasSwitch(kEnableHotwordAlwaysOn);
50 #else
51   return false;
52 #endif
53 }
54
55 bool IsAppInfoEnabled() {
56   return CommandLine::ForCurrentProcess()->HasSwitch(kEnableAppInfo);
57 }
58
59 bool IsExperimentalAppListEnabled() {
60   return CommandLine::ForCurrentProcess()->HasSwitch(
61       kEnableExperimentalAppList);
62 }
63
64 bool IsExperimentalAppListPositionEnabled() {
65   return CommandLine::ForCurrentProcess()->HasSwitch(
66              kEnableExperimentalAppListPosition) ||
67          IsExperimentalAppListEnabled();
68 }
69
70 }  // namespace switches
71 }  // namespace app_list