EME test page application.
[chromium-blink-merge.git] / chrome / browser / extensions / extension_ui_util.cc
blobab8c5ac0a717f94934042b769f01546b40264cef
1 // Copyright 2014 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 #include "chrome/browser/extensions/extension_ui_util.h"
7 #include "base/prefs/pref_service.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/common/extensions/extension_constants.h"
10 #include "chrome/common/pref_names.h"
11 #include "extensions/browser/extension_util.h"
12 #include "extensions/common/extension.h"
14 namespace extensions {
16 namespace {
18 bool IsBlockedByPolicy(const Extension* app, content::BrowserContext* context) {
19 Profile* profile = Profile::FromBrowserContext(context);
20 DCHECK(profile);
22 return (app->id() == extension_misc::kWebStoreAppId ||
23 app->id() == extension_misc::kEnterpriseWebStoreAppId) &&
24 profile->GetPrefs()->GetBoolean(prefs::kHideWebStoreIcon);
27 } // namespace
29 namespace ui_util {
31 bool ShouldDisplayInAppLauncher(const Extension* extension,
32 content::BrowserContext* context) {
33 return extension->ShouldDisplayInAppLauncher() &&
34 !IsBlockedByPolicy(extension, context) &&
35 !util::IsEphemeralApp(extension->id(), context);
38 bool ShouldDisplayInNewTabPage(const Extension* extension,
39 content::BrowserContext* context) {
40 return extension->ShouldDisplayInNewTabPage() &&
41 !IsBlockedByPolicy(extension, context) &&
42 !util::IsEphemeralApp(extension->id(), context);
45 bool ShouldDisplayInExtensionSettings(const Extension* extension,
46 content::BrowserContext* context) {
47 return extension->ShouldDisplayInExtensionSettings() &&
48 !util::IsEphemeralApp(extension->id(), context);
51 bool ShouldNotBeVisible(const Extension* extension,
52 content::BrowserContext* context) {
53 return extension->ShouldNotBeVisible() ||
54 util::IsEphemeralApp(extension->id(), context);
57 } // namespace ui_util
58 } // namespace extensions