summaryrefslogtreecommitdiffstats
path: root/chrome/browser/webdata/web_data_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/webdata/web_data_service.cc')
-rw-r--r--chrome/browser/webdata/web_data_service.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/webdata/web_data_service.cc b/chrome/browser/webdata/web_data_service.cc
index 1a66823..c6ef778 100644
--- a/chrome/browser/webdata/web_data_service.cc
+++ b/chrome/browser/webdata/web_data_service.cc
@@ -16,6 +16,7 @@
#include "chrome/common/chrome_constants.h"
#include "chrome/common/notification_details.h"
#include "chrome/common/notification_service.h"
+#include "chrome/common/notification_source.h"
#include "chrome/common/notification_type.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
@@ -794,7 +795,7 @@ void WebDataService::AddFormElementsImpl(
// done on the DB thread, and not the UI thread.
NotificationService::current()->Notify(
NotificationType::AUTOFILL_ENTRIES_CHANGED,
- NotificationService::AllSources(),
+ Source<WebDataService>(this),
Details<AutofillChangeList>(&changes));
}
@@ -830,7 +831,7 @@ void WebDataService::RemoveFormElementsAddedBetweenImpl(
// will be done on the DB thread, and not the UI thread.
NotificationService::current()->Notify(
NotificationType::AUTOFILL_ENTRIES_CHANGED,
- NotificationService::AllSources(),
+ Source<WebDataService>(this),
Details<AutofillChangeList>(&changes));
}
ScheduleCommit();
@@ -857,7 +858,7 @@ void WebDataService::RemoveFormValueForElementNameImpl(
// Post the notifications including the list of affected keys.
NotificationService::current()->Notify(
NotificationType::AUTOFILL_ENTRIES_CHANGED,
- NotificationService::AllSources(),
+ Source<WebDataService>(this),
Details<AutofillChangeList>(&changes));
}
}