Index: chrome/browser/sync/glue/password_change_processor.cc |
diff --git a/chrome/browser/sync/glue/password_change_processor.cc b/chrome/browser/sync/glue/password_change_processor.cc |
index a2fb04e2ef82bec919168850c9ac40f2e75211b4..87efd19f70311676cab5e97b9179f1e2ffdebb12 100644 |
--- a/chrome/browser/sync/glue/password_change_processor.cc |
+++ b/chrome/browser/sync/glue/password_change_processor.cc |
@@ -175,7 +175,7 @@ void PasswordChangeProcessor::ApplyChangesFromSyncModel( |
changes.Get().begin(); it != changes.Get().end(); ++it) { |
if (sync_api::ChangeRecord::ACTION_DELETE == |
it->action) { |
- DCHECK(it->specifics.HasExtension(sync_pb::password)) |
+ DCHECK(it->specifics.has_password()) |
<< "Password specifics data not present on delete!"; |
DCHECK(it->extra.get()); |
sync_api::ExtraPasswordChangeRecordData* extra = |