Update V8 to version 4.7.16.
[chromium-blink-merge.git] / ui / app_list / app_list_switches.h
blobccd62fd17421ab7a5cfd2db8a14d0e4d21da5af4
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.
5 #ifndef UI_APP_LIST_APP_LIST_SWITCHES_H_
6 #define UI_APP_LIST_APP_LIST_SWITCHES_H_
8 #include "build/build_config.h"
9 #include "ui/app_list/app_list_export.h"
11 namespace app_list {
12 namespace switches {
14 // Please keep these flags sorted (but keep enable/disable pairs together).
15 APP_LIST_EXPORT extern const char kCustomLauncherPage[];
16 APP_LIST_EXPORT extern const char kDisableAppListDismissOnBlur[];
17 APP_LIST_EXPORT extern const char kEnableAppList[];
18 APP_LIST_EXPORT extern const char kEnableCenteredAppList[];
19 APP_LIST_EXPORT extern const char kEnableExperimentalAppList[];
20 APP_LIST_EXPORT extern const char kDisableExperimentalAppList[];
21 APP_LIST_EXPORT extern const char kEnableNewAppListMixer[];
22 APP_LIST_EXPORT extern const char kDisableNewAppListMixer[];
23 APP_LIST_EXPORT extern const char kEnableSyncAppList[];
24 APP_LIST_EXPORT extern const char kDisableSyncAppList[];
25 APP_LIST_EXPORT extern const char kEnableDriveSearchInChromeLauncher[];
26 APP_LIST_EXPORT extern const char kDisableDriveSearchInChromeLauncher[];
27 APP_LIST_EXPORT extern const char kResetAppListInstallState[];
29 #if defined(OS_MACOSX)
30 APP_LIST_EXPORT extern const char kEnableMacViewsAppList[];
31 #endif
33 bool APP_LIST_EXPORT IsAppListSyncEnabled();
35 bool APP_LIST_EXPORT IsFolderUIEnabled();
37 bool APP_LIST_EXPORT IsVoiceSearchEnabled();
39 bool APP_LIST_EXPORT IsExperimentalAppListEnabled();
41 // Determines whether either command-line switch was given for enabling the
42 // centered app list position. Do not use this when positioning the app list;
43 // instead use AppListViewDelegate::ShouldCenterWindow. It checks a superset of
44 // the conditions that trigger the position.
45 bool APP_LIST_EXPORT IsCenteredAppListEnabled();
47 // Determines whether the app list should not be dismissed on focus loss.
48 bool APP_LIST_EXPORT ShouldNotDismissOnBlur();
50 bool APP_LIST_EXPORT IsDriveAppsInAppListEnabled();
52 bool APP_LIST_EXPORT IsDriveSearchInChromeLauncherEnabled();
54 #if defined(OS_MACOSX)
55 bool APP_LIST_EXPORT IsMacViewsAppListEnabled();
56 #endif
58 } // namespace switches
59 } // namespace app_list
61 #endif // UI_APP_LIST_APP_LIST_SWITCHES_H_