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

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

Issue 15582004: Move NotificationDelegate into message_center. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Win browsertests. Created 7 years, 7 months 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.cc
diff --git a/chrome/browser/notifications/notification.cc b/chrome/browser/notifications/notification.cc
index b45bf1ef6516b6496a0c03442f95b155b63ac7ab..3e24b23e2d353f65a2e006e74c50e750bacd42ec 100644
--- a/chrome/browser/notifications/notification.cc
+++ b/chrome/browser/notifications/notification.cc
@@ -11,14 +11,13 @@ Notification::Notification(const GURL& origin_url,
const string16& display_source,
const string16& replace_id,
NotificationDelegate* delegate)
- : type_(message_center::NOTIFICATION_TYPE_SIMPLE),
- origin_url_(origin_url),
- is_html_(true),
- content_url_(content_url),
- display_source_(display_source),
- replace_id_(replace_id),
- delegate_(delegate) {
-}
+ : type_(message_center::NOTIFICATION_TYPE_SIMPLE),
+ origin_url_(origin_url),
+ is_html_(true),
+ content_url_(content_url),
+ display_source_(display_source),
+ replace_id_(replace_id),
+ delegate_(delegate) {}
Notification::Notification(const GURL& origin_url,
const GURL& icon_url,
@@ -86,8 +85,7 @@ Notification::Notification(const GURL& origin_url,
body_(body),
display_source_(display_source),
replace_id_(replace_id),
- delegate_(delegate) {
-}
+ delegate_(delegate) {}
Notification::Notification(const Notification& notification)
: type_(notification.type()),

Powered by Google App Engine
This is Rietveld 408576698