| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/sync/glue/autofill_change_processor.h" | 5 #include "chrome/browser/sync/glue/autofill_change_processor.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/guid.h" |
| 10 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 11 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 12 #include "chrome/browser/guid.h" | |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "chrome/browser/autofill/personal_data_manager.h" | 14 #include "chrome/browser/autofill/personal_data_manager.h" |
| 15 #include "chrome/browser/sync/glue/autofill_change_processor2.h" | 15 #include "chrome/browser/sync/glue/autofill_change_processor2.h" |
| 16 #include "chrome/browser/sync/glue/autofill_model_associator.h" | 16 #include "chrome/browser/sync/glue/autofill_model_associator.h" |
| 17 #include "chrome/browser/sync/profile_sync_service.h" | 17 #include "chrome/browser/sync/profile_sync_service.h" |
| 18 #include "chrome/browser/webdata/autofill_change.h" | 18 #include "chrome/browser/webdata/autofill_change.h" |
| 19 #include "chrome/browser/webdata/web_data_service.h" | 19 #include "chrome/browser/webdata/web_data_service.h" |
| 20 #include "chrome/browser/webdata/web_database.h" | 20 #include "chrome/browser/webdata/web_database.h" |
| 21 #include "chrome/common/notification_service.h" | 21 #include "chrome/common/notification_service.h" |
| 22 | 22 |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 } | 331 } |
| 332 | 332 |
| 333 void AutofillChangeProcessor::ApplySyncAutofillProfileChange( | 333 void AutofillChangeProcessor::ApplySyncAutofillProfileChange( |
| 334 sync_api::SyncManager::ChangeRecord::Action action, | 334 sync_api::SyncManager::ChangeRecord::Action action, |
| 335 const sync_pb::AutofillProfileSpecifics& profile, | 335 const sync_pb::AutofillProfileSpecifics& profile, |
| 336 int64 sync_id) { | 336 int64 sync_id) { |
| 337 DCHECK_NE(sync_api::SyncManager::ChangeRecord::ACTION_DELETE, action); | 337 DCHECK_NE(sync_api::SyncManager::ChangeRecord::ACTION_DELETE, action); |
| 338 | 338 |
| 339 switch (action) { | 339 switch (action) { |
| 340 case sync_api::SyncManager::ChangeRecord::ACTION_ADD: { | 340 case sync_api::SyncManager::ChangeRecord::ACTION_ADD: { |
| 341 std::string guid(guid::GenerateGUID()); | 341 std::string guid(base::GenerateGUID()); |
| 342 scoped_ptr<AutoFillProfile> p(new AutoFillProfile); | 342 scoped_ptr<AutoFillProfile> p(new AutoFillProfile); |
| 343 p->set_guid(guid); | 343 p->set_guid(guid); |
| 344 AutofillModelAssociator::FillProfileWithServerData(p.get(), | 344 AutofillModelAssociator::FillProfileWithServerData(p.get(), |
| 345 profile); | 345 profile); |
| 346 if (!web_database_->AddAutoFillProfile(*p.get())) { | 346 if (!web_database_->AddAutoFillProfile(*p.get())) { |
| 347 NOTREACHED() << "Couldn't add autofill profile: " << guid; | 347 NOTREACHED() << "Couldn't add autofill profile: " << guid; |
| 348 return; | 348 return; |
| 349 } | 349 } |
| 350 model_associator_->Associate(&guid, sync_id); | 350 model_associator_->Associate(&guid, sync_id); |
| 351 break; | 351 break; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 AutoFillType(PHONE_FAX_WHOLE_NUMBER)))); | 463 AutoFillType(PHONE_FAX_WHOLE_NUMBER)))); |
| 464 s->set_phone_home_whole_number(UTF16ToUTF8(profile.GetFieldText( | 464 s->set_phone_home_whole_number(UTF16ToUTF8(profile.GetFieldText( |
| 465 AutoFillType(PHONE_HOME_WHOLE_NUMBER)))); | 465 AutoFillType(PHONE_HOME_WHOLE_NUMBER)))); |
| 466 node->SetAutofillSpecifics(autofill); | 466 node->SetAutofillSpecifics(autofill); |
| 467 } | 467 } |
| 468 bool AutofillChangeProcessor::HasNotMigratedYet() { | 468 bool AutofillChangeProcessor::HasNotMigratedYet() { |
| 469 return true; | 469 return true; |
| 470 } | 470 } |
| 471 | 471 |
| 472 } // namespace browser_sync | 472 } // namespace browser_sync |
| OLD | NEW |