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

Side by Side Diff: chrome/browser/sync/glue/autofill_change_processor2.cc

Issue 5159001: Rest of the autofill work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch uploaded to debug why try servers have problem applying this patch. Created 10 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_processor2.h" 5 #include "chrome/browser/sync/glue/autofill_change_processor2.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/string_util.h" 10 #include "base/string_util.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "chrome/browser/autofill/personal_data_manager.h"
12 #include "chrome/browser/profiles/profile.h" 13 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/browser/autofill/personal_data_manager.h"
14 #include "chrome/browser/sync/glue/autofill_model_associator.h" 14 #include "chrome/browser/sync/glue/autofill_model_associator.h"
15 #include "chrome/browser/sync/glue/autofill_model_associator2.h" 15 #include "chrome/browser/sync/glue/autofill_model_associator2.h"
16 #include "chrome/browser/sync/profile_sync_service.h" 16 #include "chrome/browser/sync/profile_sync_service.h"
17 #include "chrome/browser/webdata/autofill_change.h" 17 #include "chrome/browser/webdata/autofill_change.h"
18 #include "chrome/browser/webdata/web_data_service.h" 18 #include "chrome/browser/webdata/web_data_service.h"
19 #include "chrome/browser/webdata/web_database.h" 19 #include "chrome/browser/webdata/web_database.h"
20 #include "chrome/common/notification_service.h" 20 #include "chrome/common/notification_service.h"
21 21
22 namespace browser_sync { 22 namespace browser_sync {
23 23
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 s->set_company_name(UTF16ToUTF8(profile.GetFieldText( 574 s->set_company_name(UTF16ToUTF8(profile.GetFieldText(
575 AutoFillType(COMPANY_NAME)))); 575 AutoFillType(COMPANY_NAME))));
576 s->set_phone_fax_whole_number(UTF16ToUTF8(profile.GetFieldText( 576 s->set_phone_fax_whole_number(UTF16ToUTF8(profile.GetFieldText(
577 AutoFillType(PHONE_FAX_WHOLE_NUMBER)))); 577 AutoFillType(PHONE_FAX_WHOLE_NUMBER))));
578 s->set_phone_home_whole_number(UTF16ToUTF8(profile.GetFieldText( 578 s->set_phone_home_whole_number(UTF16ToUTF8(profile.GetFieldText(
579 AutoFillType(PHONE_HOME_WHOLE_NUMBER)))); 579 AutoFillType(PHONE_HOME_WHOLE_NUMBER))));
580 node->SetAutofillSpecifics(autofill); 580 node->SetAutofillSpecifics(autofill);
581 } 581 }
582 582
583 } // namespace browser_sync 583 } // namespace browser_sync
584
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/autofill_change_processor.cc ('k') | chrome/browser/sync/glue/autofill_data_type_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698