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

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

Issue 2867036: sync: Remove unused function ChromeModelHasUserCreatedNodes. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: explicit Created 10 years, 6 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_model_associator.cc
diff --git a/chrome/browser/sync/glue/autofill_model_associator.cc b/chrome/browser/sync/glue/autofill_model_associator.cc
index 127df31fb2eb6cacdd4a8c714e997dc4e34f6127..6c50075682e6fa0c759dd5abcf35fe08b3cb91f6 100644
--- a/chrome/browser/sync/glue/autofill_model_associator.cc
+++ b/chrome/browser/sync/glue/autofill_model_associator.cc
@@ -380,13 +380,6 @@ bool AutofillModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
return true;
}
-bool AutofillModelAssociator::ChromeModelHasUserCreatedNodes(bool* has_nodes) {
- DCHECK(has_nodes);
- // Assume the autofill model always have user-created nodes.
- *has_nodes = true;
- return true;
-}
-
void AutofillModelAssociator::AbortAssociation() {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
AutoLock lock(abort_association_pending_lock_);

Powered by Google App Engine
This is Rietveld 408576698