Chromium Code Reviews

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

Issue 5794003: Deinline even more destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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) {
« no previous file with comments | « chrome/browser/sync/glue/autofill_profile_model_associator.h ('k') | chrome/browser/sync/glue/bookmark_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine