Commit 13a18ddc authored by Eriksson Monteiro's avatar Eriksson Monteiro

hide webstore icon in the newtab page

parent 5c486071
Pipeline #11 failed with stages
in 0 seconds
<!-- This is only meant to be copied by chrome.exe in developer builds. -->
<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<VisualElements
BackgroundColor="#212121"
ShowNameOnSquare150x150Logo="on"
ForegroundText="light"
Square150x150Logo="Logo.png"
Square70x70Logo="SmallLogo.png"
Square44x44Logo="SmallLogo.png"/>
</Application>
......@@ -278,11 +278,6 @@
use-title-pill$="[[theme_.shortcutUseTitlePill]]">
</ntp-most-visited>
</template>
<template is="dom-if" if="[[middleSlotPromoEnabled_]]">
<ntp-middle-slot-promo
on-ntp-middle-slot-promo-loaded="onMiddleSlotPromoLoaded_">
</ntp-middle-slot-promo>
</template>
<template is="dom-repeat" items="[[moduleDescriptors_]]" id="modules"
on-dom-change="onModulesLoaded_">
<ntp-module-wrapper descriptor="[[item]]"
......
......@@ -122,7 +122,7 @@ void SupervisedUserPrefStore::OnNewSettingsAvailable(
prefs_->SetBoolean(prefs::kForceGoogleSafeSearch, true);
prefs_->SetInteger(prefs::kForceYouTubeRestrict,
safe_search_util::YOUTUBE_RESTRICT_MODERATE);
prefs_->SetBoolean(prefs::kHideWebStoreIcon, false);
prefs_->SetBoolean(prefs::kHideWebStoreIcon, true);
prefs_->SetBoolean(prefs::kSigninAllowed, false);
prefs_->SetBoolean(feed::prefs::kEnableSnippets, false);
......
......@@ -104,7 +104,7 @@ void RegisterBrowserUserPrefs(user_prefs::PrefRegistrySyncable* registry) {
// We need to register the type of these preferences in order to query
// them even though they're only typically controlled via policy.
registry->RegisterBooleanPref(prefs::kClearPluginLSODataEnabled, true);
registry->RegisterBooleanPref(prefs::kHideWebStoreIcon, false);
registry->RegisterBooleanPref(prefs::kHideWebStoreIcon, true);
registry->RegisterBooleanPref(prefs::kSharedClipboardEnabled, true);
#if BUILDFLAG(ENABLE_CLICK_TO_CALL)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment