| Index: chrome/browser/webdata/web_data_service.h
|
| diff --git a/chrome/browser/webdata/web_data_service.h b/chrome/browser/webdata/web_data_service.h
|
| index 986695c73d2b582240bd551bb8ecfe7c024e201f..3a8ef47c7c29ea132e4cc085966dccc4bfafe799 100644
|
| --- a/chrome/browser/webdata/web_data_service.h
|
| +++ b/chrome/browser/webdata/web_data_service.h
|
| @@ -25,6 +25,7 @@ class GURL;
|
| struct IE7PasswordInfo;
|
| #endif
|
| class MessageLoop;
|
| +class Profile;
|
| class SkBitmap;
|
| class Task;
|
| class TemplateURL;
|
| @@ -272,6 +273,13 @@ class WebDataService
|
|
|
| WebDataService();
|
|
|
| + // Notifies listeners on the UI thread that multiple changes have been made to
|
| + // to Autofill records of the database.
|
| + // NOTE: This method is intended to be called from the DB thread. It
|
| + // it asynchronously notifies listeners on the UI thread.
|
| + // |profile| may be NULL for testing purposes.
|
| + static void NotifyOfMultipleAutofillChanges(Profile* profile);
|
| +
|
| // Initializes the web data service. Returns false on failure
|
| // Takes the path of the profile directory as its argument.
|
| bool Init(const FilePath& profile_path);
|
|
|