diff --git a/browser/ui/webui/brave_new_tab_message_handler.cc b/browser/ui/webui/brave_new_tab_message_handler.cc index f8f573fab294..99de96bf63d0 100644 --- a/browser/ui/webui/brave_new_tab_message_handler.cc +++ b/browser/ui/webui/brave_new_tab_message_handler.cc @@ -41,7 +41,9 @@ using ntp_background_images::ViewCounterServiceFactory; namespace { bool IsPrivateNewTab(Profile* profile) { - return brave::IsTorProfile(profile) || profile->IsIncognitoProfile(); + return brave::IsTorProfile(profile) || + profile->IsIncognitoProfile() || + profile->IsGuestSession(); } base::DictionaryValue GetStatsDictionary(PrefService* prefs) {