| Index: chrome/browser/service/service_process_control.cc
|
| ===================================================================
|
| --- chrome/browser/service/service_process_control.cc (revision 91771)
|
| +++ chrome/browser/service/service_process_control.cc (working copy)
|
| @@ -12,6 +12,7 @@
|
| #include "base/threading/thread_restrictions.h"
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/upgrade_detector.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/service_messages.h"
|
| #include "chrome/common/service_process_util.h"
|
| @@ -204,7 +205,7 @@
|
| Send(new ServiceMsg_UpdateAvailable);
|
| } else {
|
| if (registrar_.IsEmpty())
|
| - registrar_.Add(this, NotificationType::UPGRADE_RECOMMENDED,
|
| + registrar_.Add(this, chrome::UPGRADE_RECOMMENDED,
|
| NotificationService::AllSources());
|
| }
|
| RunConnectDoneTasks();
|
| @@ -227,7 +228,7 @@
|
| void ServiceProcessControl::Observe(NotificationType type,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| - if (type == NotificationType::UPGRADE_RECOMMENDED) {
|
| + if (type == chrome::UPGRADE_RECOMMENDED) {
|
| Send(new ServiceMsg_UpdateAvailable);
|
| }
|
| }
|
|
|