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#ifndef APPS_APP_LAUNCHER_H_
6#define APPS_APP_LAUNCHER_H_
7
8#include "base/callback_forward.h"
9
10namespace apps {
11
12// Returns whether the app launcher has been enabled.
13bool IsAppLauncherEnabled();
14
15// Returns whether the app launcher promo should be shown.
16bool ShouldShowAppLauncherPromo();
17
18}  // namespace apps
19
20#endif  // APPS_APP_LAUNCHER_H_
21