Skip to content

Commit

Permalink
Merge pull request #5953 from ryanbr/fix-gmail2
Browse files Browse the repository at this point in the history
Fixes Gmail image signatures not loading
  • Loading branch information
bsclifton committed Jun 29, 2020
2 parents af2ee0c + ceafa39 commit b6a0e62
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 b6a0e62

Please sign in to comment.