| Index: chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
|
| ===================================================================
|
| --- chrome/browser/sync/glue/autofill_profile_data_type_controller.cc (revision 106380)
|
| +++ chrome/browser/sync/glue/autofill_profile_data_type_controller.cc (working copy)
|
| @@ -16,7 +16,7 @@
|
| #include "chrome/browser/webdata/web_data_service.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "content/browser/browser_thread.h"
|
| -#include "content/common/notification_service.h"
|
| +#include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/notification_source.h"
|
|
|
| namespace browser_sync {
|
| @@ -47,7 +47,7 @@
|
| return true;
|
| } else {
|
| notification_registrar_.Add(this, chrome::NOTIFICATION_WEB_DATABASE_LOADED,
|
| - NotificationService::AllSources());
|
| + content::NotificationService::AllSources());
|
| return false;
|
| }
|
| }
|
| @@ -61,7 +61,7 @@
|
| DoStartAssociationAsync();
|
| } else {
|
| notification_registrar_.Add(this, chrome::NOTIFICATION_WEB_DATABASE_LOADED,
|
| - NotificationService::AllSources());
|
| + content::NotificationService::AllSources());
|
| }
|
| }
|
|
|
|
|