Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix missing bracket
  • Loading branch information
ryanbr committed Jun 25, 2020
1 parent 1163d54 commit c6e7d17
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ constexpr char kUbi[] = "https://[*.]ubi.com/*";
constexpr char kAmericanexpress[] = "https://[*.]americanexpress.com/*";
constexpr char kAexp[] = "https://[*.]aexp-static.com/*";
constexpr char kSony[] = "https://[*.]sony.com/*";
constexpr char kGoogle[] = "https://[*.]google.com/*";
constexpr char kGoogleusercontent[] = "https://[*.]googleusercontent.com/*";

bool BraveIsAllowedThirdParty(
const GURL& url,
Expand All @@ -44,6 +46,14 @@ bool BraveIsAllowedThirdParty(
ContentSettingsPattern::FromString(kWordpress),
ContentSettingsPattern::FromString(kWp)
},
{
ContentSettingsPattern::FromString(kGoogle),
ContentSettingsPattern::FromString(kGoogleusercontent)
},
{
ContentSettingsPattern::FromString(kGoogleusercontent),
ContentSettingsPattern::FromString(kGoogle)
},
{
ContentSettingsPattern::FromString(kPlaystation),
ContentSettingsPattern::FromString(kSonyentertainmentnetwork)
Expand Down

0 comments on commit c6e7d17

Please sign in to comment.