| Index: chrome/browser/background/background_mode_manager.cc
|
| ===================================================================
|
| --- chrome/browser/background/background_mode_manager.cc (revision 158279)
|
| +++ chrome/browser/background/background_mode_manager.cc (working copy)
|
| @@ -37,7 +37,6 @@
|
| #include "chrome/common/extensions/permissions/permission_set.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "content/public/browser/notification_service.h"
|
| -#include "content/public/browser/notification_types.h"
|
| #include "content/public/browser/user_metrics.h"
|
| #include "grit/chromium_strings.h"
|
| #include "grit/generated_resources.h"
|
| @@ -192,7 +191,7 @@
|
|
|
| // Listen for the application shutting down so we can decrement our KeepAlive
|
| // count.
|
| - registrar_.Add(this, content::NOTIFICATION_APP_TERMINATING,
|
| + registrar_.Add(this, chrome::NOTIFICATION_APP_TERMINATING,
|
| content::NotificationService::AllSources());
|
| }
|
|
|
| @@ -319,7 +318,7 @@
|
| }
|
| }
|
| break;
|
| - case content::NOTIFICATION_APP_TERMINATING:
|
| + case chrome::NOTIFICATION_APP_TERMINATING:
|
| // Make sure we aren't still keeping the app alive (only happens if we
|
| // don't receive an EXTENSIONS_READY notification for some reason).
|
| EndKeepAliveForStartup();
|
|
|