summaryrefslogtreecommitdiffstats
path: root/apps/app_launcher.cc
blob: 3f00b47a6cbeb8f36b9c72de1047e19cc5a8721d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "apps/app_launcher.h"

#include "apps/field_trial_names.h"
#include "apps/pref_names.h"
#include "base/metrics/field_trial.h"
#include "base/prefs/pref_registry_simple.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/ui/host_desktop.h"

#if defined(OS_WIN)
#include "chrome/installer/launcher_support/chrome_launcher_support.h"
#include "chrome/installer/util/browser_distribution.h"
#endif

namespace apps {

bool IsAppLauncherEnabled() {
#if defined(USE_ASH) && !defined(OS_WIN)
  return true;
#elif !defined(OS_WIN)
  return false;
#else
#if defined(USE_ASH)
  if (chrome::GetActiveDesktop() == chrome::HOST_DESKTOP_TYPE_ASH)
    return true;
#endif
  PrefService* prefs = g_browser_process->local_state();
  // In some tests, the prefs aren't initialised.
  if (!prefs)
    return false;
  return prefs->GetBoolean(prefs::kAppLauncherHasBeenEnabled);
#endif
}

bool ShouldShowAppLauncherPromo() {
  PrefService* local_state = g_browser_process->local_state();
  // In some tests, the prefs aren't initialised.
  if (!local_state)
    return false;
  std::string app_launcher_promo_group_name =
      base::FieldTrialList::FindFullName(apps::kLauncherPromoTrialName);
  return !IsAppLauncherEnabled() &&
      local_state->GetBoolean(apps::prefs::kShowAppLauncherPromo) &&
      (app_launcher_promo_group_name == apps::kShowLauncherPromoOnceGroupName ||
       app_launcher_promo_group_name ==
          apps::kResetShowLauncherPromoPrefGroupName);
}

}  // namespace apps