| Index: ui/app_list/app_list_switches.cc
|
| diff --git a/ui/app_list/app_list_switches.cc b/ui/app_list/app_list_switches.cc
|
| index 19bcc41c45735f6d986e370ac68d0874e8f74941..82a9fb6edd875972b1ec77aec4dc63254bbc3a86 100644
|
| --- a/ui/app_list/app_list_switches.cc
|
| +++ b/ui/app_list/app_list_switches.cc
|
| @@ -26,6 +26,9 @@ const char kDisableAppListDismissOnBlur[] = "disable-app-list-dismiss-on-blur";
|
| // If set, the app list will be enabled as if enabled from CWS.
|
| const char kEnableAppList[] = "enable-app-list";
|
|
|
| +// Enables the fullscreen app list.
|
| +extern const char kEnableFullscreenAppList[] = "enable-fullscreen-app-list";
|
| +
|
| // Enable/disable syncing of the app list independent of extensions.
|
| const char kEnableSyncAppList[] = "enable-sync-app-list";
|
| const char kDisableSyncAppList[] = "disable-sync-app-list";
|
| @@ -83,5 +86,10 @@ std::string AnswerServerUrl() {
|
| kAnswerServerUrl);
|
| }
|
|
|
| +void SetFullscreenAppListSwitch() {
|
| + base::CommandLine::ForCurrentProcess()->AppendSwitch(
|
| + kEnableFullscreenAppList);
|
| +}
|
| +
|
| } // namespace switches
|
| } // namespace app_list
|
|
|