Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: chrome/browser/webdata/web_data_service.h

Issue 7967024: Profile shouldn't own PersonalDataManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addresses isherman #11 Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « chrome/browser/ui/webui/options/autofill_options_handler.cc ('k') | chrome/browser/webdata/web_data_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698