| Index: chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc (revision 91771)
|
| +++ chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc (working copy)
|
| @@ -12,6 +12,7 @@
|
| #include "base/task.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/custom_handlers/protocol_handler.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/test/testing_browser_process.h"
|
| #include "chrome/test/testing_browser_process_test.h"
|
| #include "chrome/test/testing_pref_service.h"
|
| @@ -67,13 +68,13 @@
|
| : events_(0),
|
| notification_registrar_() {
|
| notification_registrar_.Add(this,
|
| - NotificationType::PROTOCOL_HANDLER_REGISTRY_CHANGED,
|
| + chrome::PROTOCOL_HANDLER_REGISTRY_CHANGED,
|
| NotificationService::AllSources());
|
| }
|
|
|
| ~NotificationCounter() {
|
| notification_registrar_.Remove(this,
|
| - NotificationType::PROTOCOL_HANDLER_REGISTRY_CHANGED,
|
| + chrome::PROTOCOL_HANDLER_REGISTRY_CHANGED,
|
| NotificationService::AllSources());
|
| }
|
|
|
| @@ -97,7 +98,7 @@
|
| called_(false),
|
| notification_registrar_() {
|
| notification_registrar_.Add(this,
|
| - NotificationType::PROTOCOL_HANDLER_REGISTRY_CHANGED,
|
| + chrome::PROTOCOL_HANDLER_REGISTRY_CHANGED,
|
| NotificationService::AllSources());
|
| }
|
|
|
|
|