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

Unified Diff: chrome/browser/sync/glue/autofill_profile_data_type_controller.cc

Issue 8065016: [Sync] Refactor non-frontend DTC to handle new API properly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reffffactor Created 9 years, 2 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/sync/glue/autofill_profile_data_type_controller.cc
diff --git a/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc b/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
index a731eeada4e5e3b7f88115461bd7a9d8ac5436b3..9f7df6cef52521217597a250db8edc0e75626582 100644
--- a/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
+++ b/chrome/browser/sync/glue/autofill_profile_data_type_controller.cc
@@ -5,32 +5,121 @@
#include "chrome/browser/sync/glue/autofill_profile_data_type_controller.h"
#include "base/metrics/histogram.h"
+#include "base/task.h"
+#include "chrome/browser/autofill/personal_data_manager.h"
+#include "chrome/browser/autofill/personal_data_manager_factory.h"
+#include "chrome/browser/profiles/profile.h"
+#include "chrome/browser/sync/api/sync_error.h"
+#include "chrome/browser/sync/api/syncable_service.h"
#include "chrome/browser/sync/profile_sync_factory.h"
+#include "chrome/browser/sync/profile_sync_service.h"
#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/common/notification_source.h"
namespace browser_sync {
AutofillProfileDataTypeController::AutofillProfileDataTypeController(
ProfileSyncFactory* profile_sync_factory,
Profile* profile)
- : AutofillDataTypeController(profile_sync_factory, profile) {}
+ : NewNonFrontendDataTypeController(profile_sync_factory, profile),
+ personal_data_(NULL) {
+}
AutofillProfileDataTypeController::~AutofillProfileDataTypeController() {}
-syncable::ModelType AutofillProfileDataTypeController::type() const {
- return syncable::AUTOFILL_PROFILE;
+bool AutofillProfileDataTypeController::StartModels() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), MODEL_STARTING);
+ // Waiting for the personal data is subtle: we do this as the PDM resets
+ // its cache of unique IDs once it gets loaded. If we were to proceed with
+ // association, the local ids in the mappings would wind up colliding.
+ personal_data_ = PersonalDataManagerFactory::GetForProfile(profile());
+ if (!personal_data_->IsDataLoaded()) {
+ personal_data_->SetObserver(this);
+ return false;
+ }
+
+ web_data_service_ = profile()->GetWebDataService(Profile::IMPLICIT_ACCESS);
+ if (web_data_service_.get() && web_data_service_->IsDatabaseLoaded()) {
+ return true;
+ } else {
+ notification_registrar_.Add(this, chrome::NOTIFICATION_WEB_DATABASE_LOADED,
+ NotificationService::AllSources());
+ return false;
+ }
+}
+
+void AutofillProfileDataTypeController::OnPersonalDataChanged() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), MODEL_STARTING);
+ personal_data_->RemoveObserver(this);
+ web_data_service_ = profile()->GetWebDataService(Profile::IMPLICIT_ACCESS);
+ if (web_data_service_.get() && web_data_service_->IsDatabaseLoaded()) {
+ set_state(ASSOCIATING);
akalin 2011/10/11 22:41:08 decomp this block (shared with Observe) into its o
Nicolas Zea 2011/10/12 04:24:19 Done.
+ if (!StartAssociationAsync()) {
+ SyncError error(FROM_HERE,
+ "Failed to post association task.",
+ type());
+ StartDoneImpl(ASSOCIATION_FAILED, NOT_RUNNING, error);
+ }
+ } else {
+ notification_registrar_.Add(this, chrome::NOTIFICATION_WEB_DATABASE_LOADED,
+ NotificationService::AllSources());
+ }
+}
+
+void AutofillProfileDataTypeController::Observe(
+ int notification_type,
+ const NotificationSource& source,
+ const NotificationDetails& details) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), MODEL_STARTING);
+ notification_registrar_.RemoveAll();
+ set_state(ASSOCIATING);
+ if (!StartAssociationAsync()) {
+ SyncError error(FROM_HERE,
+ "Failed to post association task.",
+ type());
+ StartDoneImpl(ASSOCIATION_FAILED, NOT_RUNNING, error);
+ }
}
-void AutofillProfileDataTypeController::CreateSyncComponents() {
+bool AutofillProfileDataTypeController::StartAssociationAsync() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), ASSOCIATING);
+ return BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
+ base::Bind(&AutofillProfileDataTypeController::StartAssociation,
+ this));
+}
+
+WeakHandle<SyncableService>
+ AutofillProfileDataTypeController::GetWeakHandleToSyncableService() const {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
- ProfileSyncFactory::SyncComponents sync_components =
- profile_sync_factory()->
- CreateAutofillProfileSyncComponents(
+ // TODO(isherman): This shouldn't create anything, but just get a weakptr to
akalin 2011/10/11 22:41:08 This will most likely conflict with isherman's cha
Nicolas Zea 2011/10/12 04:24:19 No longer doing weak handles and rebased to handle
+ // the AutofillProfileSyncableService. See crbug.com/96922.
+ return MakeWeakHandle(
+ profile_sync_factory()->CreateAutofillProfileSyncComponents(
profile_sync_service(),
- web_data_service()->GetDatabase(),
- this);
- set_model_associator(sync_components.model_associator);
- set_change_processor(sync_components.change_processor);
+ web_data_service_->GetDatabase())->AsWeakPtr());
+}
+
+void AutofillProfileDataTypeController::StopModels() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK(state() == STOPPING || state() == NOT_RUNNING);
+ notification_registrar_.RemoveAll();
+ personal_data_->RemoveObserver(this);
+}
+
+syncable::ModelType AutofillProfileDataTypeController::type() const {
+ return syncable::AUTOFILL_PROFILE;
+}
+
+browser_sync::ModelSafeGroup
+ AutofillProfileDataTypeController::model_safe_group() const {
+ return browser_sync::GROUP_DB;
}
void AutofillProfileDataTypeController::RecordUnrecoverableError(

Powered by Google App Engine
This is Rietveld 408576698