Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1473)

Unified Diff: chrome/browser/notifications/notification_permission_infobar_delegate.cc

Issue 1441143006: Disable Notifications in Incognito (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@innoinherit
Patch Set: Address nits Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/notifications/notification_permission_infobar_delegate.cc
diff --git a/chrome/browser/notifications/notification_permission_infobar_delegate.cc b/chrome/browser/notifications/notification_permission_infobar_delegate.cc
index 105e48d81415d66c45a4ac43ba36a5d943b21c4c..11ed10e14ac25ac8c8daa7fc8a8edc8271465f35 100644
--- a/chrome/browser/notifications/notification_permission_infobar_delegate.cc
+++ b/chrome/browser/notifications/notification_permission_infobar_delegate.cc
@@ -9,7 +9,7 @@
#include "chrome/grit/generated_resources.h"
#include "components/infobars/core/infobar.h"
#include "components/url_formatter/elide_url.h"
-#include "net/base/escape.h"
+#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
// static
@@ -39,7 +39,8 @@ NotificationPermissionInfobarDelegate::~NotificationPermissionInfobarDelegate()
{}
int NotificationPermissionInfobarDelegate::GetIconId() const {
- return IDR_ANDROID_INFOBAR_NOTIFICATIONS;
+ // Keep this consistent with IncognitoDeniedInfoBarDelegate::GetIconId.
+ return IDR_INFOBAR_DESKTOP_NOTIFICATIONS;
}
base::string16 NotificationPermissionInfobarDelegate::GetMessageText() const {
« no previous file with comments | « chrome/browser/notifications/notification_permission_context.cc ('k') | chrome/browser/ui/android/infobars/confirm_infobar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698