Skip to content

Commit

Permalink
Presubmit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivanKaul committed Sep 13, 2024
1 parent a022181 commit 667c230
Showing 1 changed file with 11 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

using brave_shields::features::kBraveAdblockCookieListDefault;
using brave_shields::features::kBraveAdblockExperimentalListDefault;
using brave_shields::features::kBraveAdblockTwitchListDefault;
using brave_shields::features::kBraveAdblockMobileNotificationsListDefault;
using brave_shields::features::kBraveAdblockTwitchListDefault;

namespace brave_shields {

Expand All @@ -41,22 +41,16 @@ typedef struct ListDefaultOverrideConstants {
} ListDefaultOverrideConstants;

const ListDefaultOverrideConstants kOverrideConstants[4] = {
{
.feature = raw_ref<const base::Feature>(kBraveAdblockCookieListDefault),
.list_uuid = kCookieListUuid
},
{
.feature = raw_ref<const base::Feature>(kBraveAdblockMobileNotificationsListDefault),
.list_uuid = kMobileNotificationsListUuid
},
{
.feature = raw_ref<const base::Feature>(kBraveAdblockExperimentalListDefault),
.list_uuid = kExperimentalListUuid
},
{
.feature = raw_ref<const base::Feature>(kBraveAdblockTwitchListDefault),
.list_uuid = kTwitchListUuid
},
{.feature = raw_ref<const base::Feature>(kBraveAdblockCookieListDefault),
.list_uuid = kCookieListUuid},
{.feature = raw_ref<const base::Feature>(
kBraveAdblockMobileNotificationsListDefault),
.list_uuid = kMobileNotificationsListUuid},
{.feature =
raw_ref<const base::Feature>(kBraveAdblockExperimentalListDefault),
.list_uuid = kExperimentalListUuid},
{.feature = raw_ref<const base::Feature>(kBraveAdblockTwitchListDefault),
.list_uuid = kTwitchListUuid},
};

} // namespace
Expand Down

0 comments on commit 667c230

Please sign in to comment.