| Index: chrome/browser/chromeos/notifications/balloon_view.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/notifications/balloon_view.cc (revision 91771)
|
| +++ chrome/browser/chromeos/notifications/balloon_view.cc (working copy)
|
| @@ -216,7 +216,7 @@
|
| html_contents_->EnableWebUI();
|
| AddChildView(html_contents_->view());
|
| notification_registrar_.Add(this,
|
| - NotificationType::NOTIFY_BALLOON_DISCONNECTED, Source<Balloon>(balloon));
|
| + chrome::NOTIFY_BALLOON_DISCONNECTED, Source<Balloon>(balloon));
|
| }
|
|
|
| void BalloonViewImpl::Update() {
|
| @@ -290,7 +290,7 @@
|
| void BalloonViewImpl::Observe(NotificationType type,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| - if (type != NotificationType::NOTIFY_BALLOON_DISCONNECTED) {
|
| + if (type != chrome::NOTIFY_BALLOON_DISCONNECTED) {
|
| NOTREACHED();
|
| return;
|
| }
|
| @@ -298,7 +298,7 @@
|
| // If the renderer process attached to this balloon is disconnected
|
| // (e.g., because of a crash), we want to close the balloon.
|
| notification_registrar_.Remove(this,
|
| - NotificationType::NOTIFY_BALLOON_DISCONNECTED, Source<Balloon>(balloon_));
|
| + chrome::NOTIFY_BALLOON_DISCONNECTED, Source<Balloon>(balloon_));
|
| Close(false);
|
| }
|
|
|
|
|