Index: chrome/browser/notifications/notification.cc |
diff --git a/chrome/browser/notifications/notification.cc b/chrome/browser/notifications/notification.cc |
index 376ec0f08dc1e665de26eb6885414caefe6f409a..ffb287157aa98cc34ff9051601cecbf06b65882e 100644 |
--- a/chrome/browser/notifications/notification.cc |
+++ b/chrome/browser/notifications/notification.cc |
@@ -11,7 +11,7 @@ Notification::Notification(const GURL& origin_url, |
const string16& display_source, |
const string16& replace_id, |
NotificationDelegate* delegate) |
- : type_(ui::notifications::NOTIFICATION_TYPE_SIMPLE), |
+ : type_(message_center::NOTIFICATION_TYPE_SIMPLE), |
origin_url_(origin_url), |
is_html_(true), |
content_url_(content_url), |
@@ -28,7 +28,7 @@ Notification::Notification(const GURL& origin_url, |
const string16& display_source, |
const string16& replace_id, |
NotificationDelegate* delegate) |
- : type_(ui::notifications::NOTIFICATION_TYPE_SIMPLE), |
+ : type_(message_center::NOTIFICATION_TYPE_SIMPLE), |
origin_url_(origin_url), |
icon_url_(icon_url), |
is_html_(false), |
@@ -42,7 +42,7 @@ Notification::Notification(const GURL& origin_url, |
icon_url, title, body, dir)); |
} |
-Notification::Notification(ui::notifications::NotificationType type, |
+Notification::Notification(message_center::NotificationType type, |
const GURL& origin_url, |
const GURL& icon_url, |
const string16& title, |
@@ -78,7 +78,7 @@ Notification::Notification(const GURL& origin_url, |
const string16& display_source, |
const string16& replace_id, |
NotificationDelegate* delegate) |
- : type_(ui::notifications::NOTIFICATION_TYPE_SIMPLE), |
+ : type_(message_center::NOTIFICATION_TYPE_SIMPLE), |
origin_url_(origin_url), |
icon_(icon), |
is_html_(false), |