Index: chrome/browser/sync/glue/autofill_profile_model_associator.cc |
diff --git a/chrome/browser/sync/glue/autofill_profile_model_associator.cc b/chrome/browser/sync/glue/autofill_profile_model_associator.cc |
index 727c4011a7a25d2ca63348fed2920a452589f701..91027e318c1d4db5fc811a97026561551a027cd1 100644 |
--- a/chrome/browser/sync/glue/autofill_profile_model_associator.cc |
+++ b/chrome/browser/sync/glue/autofill_profile_model_associator.cc |
@@ -32,6 +32,8 @@ AutofillProfileModelAssociator::~AutofillProfileModelAssociator() { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); |
} |
+AutofillProfileModelAssociator::AutofillProfileModelAssociator() {} |
+ |
bool AutofillProfileModelAssociator::TraverseAndAssociateChromeAutoFillProfiles( |
sync_api::WriteTransaction* write_trans, |
const sync_api::ReadNode& autofill_root, |
@@ -330,6 +332,23 @@ bool AutofillProfileModelAssociator::SaveChangesToWebData( |
return true; |
} |
+const std::string* AutofillProfileModelAssociator::GetChromeNodeFromSyncId( |
+ int64 sync_id) { |
+ return NULL; |
+ } |
+ |
+bool AutofillProfileModelAssociator::InitSyncNodeFromChromeId( |
+ const std::string& node_id, |
+ sync_api::BaseNode* sync_node) { |
+ return false; |
+} |
+ |
+bool AutofillProfileModelAssociator::GetSyncIdForTaggedNode( |
+ const std::string& tag, |
+ int64* sync_id) { |
+ return false; |
+} |
+ |
void AutofillProfileModelAssociator::Associate( |
const std::string* autofill, |
int64 sync_id) { |