Home | History | Annotate | Download | only in app_list
      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 enabled in app list UI.
     13 const char kEnableFolderUI[] = "enable-app-list-folder-ui";
     14 
     15 bool IsFolderUIEnabled() {
     16   return CommandLine::ForCurrentProcess()->HasSwitch(kEnableFolderUI);
     17 }
     18 
     19 }  // namespcae switches
     20 }  // namespace app_list
     21