| Index: chrome/browser/ui/webui/conflicts_ui.cc
|
| ===================================================================
|
| --- chrome/browser/ui/webui/conflicts_ui.cc (revision 91771)
|
| +++ chrome/browser/ui/webui/conflicts_ui.cc (working copy)
|
| @@ -14,6 +14,7 @@
|
| #include "chrome/browser/enumerate_modules_model_win.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/webui/chrome_url_data_manager.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/jstemplate_builder.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "content/browser/tab_contents/tab_contents.h"
|
| @@ -144,7 +145,7 @@
|
|
|
| void ConflictsDOMHandler::HandleRequestModuleList(const ListValue* args) {
|
| // This request is handled asynchronously. See Observe for when we reply back.
|
| - registrar_.Add(this, NotificationType::MODULE_LIST_ENUMERATED,
|
| + registrar_.Add(this, chrome::MODULE_LIST_ENUMERATED,
|
| NotificationService::AllSources());
|
| EnumerateModulesModel::GetInstance()->ScanNow();
|
| }
|
| @@ -179,7 +180,7 @@
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| switch (type.value) {
|
| - case NotificationType::MODULE_LIST_ENUMERATED:
|
| + case chrome::MODULE_LIST_ENUMERATED:
|
| SendModuleList();
|
| registrar_.RemoveAll();
|
| break;
|
|
|