HomeSort by relevance Sort by last modified time
    Searched refs:AutofillWebDataService (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_webdata_service.cc 28 AutofillWebDataService::AutofillWebDataService(
40 &AutofillWebDataService::NotifyAutofillMultipleChangedOnUIThread,
47 AutofillWebDataService::AutofillWebDataService(
61 void AutofillWebDataService::ShutdownOnUIThread() {
68 void AutofillWebDataService::AddFormFields(
75 WebDataServiceBase::Handle AutofillWebDataService::GetFormValuesForElementName(
83 WebDataServiceBase::Handle AutofillWebDataService::HasFormElements(
90 void AutofillWebDataService::RemoveFormElementsAddedBetween
    [all...]
autofill_webdata_service.h 38 class AutofillWebDataService : public AutofillWebData,
41 AutofillWebDataService(scoped_refptr<base::MessageLoopProxy> ui_thread,
43 AutofillWebDataService(scoped_refptr<WebDatabaseService> wdbs,
101 virtual ~AutofillWebDataService();
105 base::WeakPtr<AutofillWebDataService> AsWeakPtr() {
120 base::WeakPtrFactory<AutofillWebDataService> weak_ptr_factory_;
124 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataService);
autofill_profile_syncable_service.h 40 class AutofillWebDataService;
61 AutofillWebDataService* web_data_service,
67 AutofillWebDataService* web_data_service);
web_data_service_unittest.cc 112 new AutofillWebDataService(wdbs_,
143 scoped_refptr<AutofillWebDataService> wds_;
165 void(AutofillWebDataService::*add_observer_func)(
167 &AutofillWebDataService::AddObserver;
174 void(AutofillWebDataService::*remove_observer_func)(
176 &AutofillWebDataService::RemoveObserver;
  /external/chromium_org/components/webdata/common/
web_data_service_test_util.cc 9 using autofill::AutofillWebDataService;
25 scoped_refptr<AutofillWebDataService> fake_autofill,
35 scoped_refptr<AutofillWebDataService>
web_data_service_test_util.h 33 scoped_refptr<autofill::AutofillWebDataService> fake_autofill,
38 virtual scoped_refptr<autofill::AutofillWebDataService>
46 scoped_refptr<autofill::AutofillWebDataService> fake_autofill_web_data_;
  /external/chromium_org/android_webview/browser/
aw_form_database_service.h 39 scoped_refptr<autofill::AutofillWebDataService>
59 scoped_refptr<autofill::AutofillWebDataService> autofill_data_;
aw_form_database_service.cc 38 autofill_data_ = new autofill::AutofillWebDataService(
60 scoped_refptr<autofill::AutofillWebDataService>
aw_form_database_service_unittest.cc 19 using autofill::AutofillWebDataService;
  /external/chromium_org/chrome/browser/webdata/
web_data_service_factory.h 20 class AutofillWebDataService;
36 virtual scoped_refptr<autofill::AutofillWebDataService> GetAutofillWebData();
45 scoped_refptr<autofill::AutofillWebDataService> autofill_web_data_;
65 // Returns the AutofillWebDataService associated with the |profile|.
66 static scoped_refptr<autofill::AutofillWebDataService>
web_data_service_factory.cc 31 using autofill::AutofillWebDataService;
46 scoped_refptr<AutofillWebDataService> autofill_web_data,
103 autofill_web_data_ = new AutofillWebDataService(
135 scoped_refptr<AutofillWebDataService>
197 scoped_refptr<AutofillWebDataService>
206 scoped_refptr<AutofillWebDataService>(NULL);
autocomplete_syncable_service.h 54 autofill::AutofillWebDataService* web_data_service,
59 autofill::AutofillWebDataService* web_data_service);
  /external/chromium_org/chrome/browser/sync/glue/
autofill_profile_data_type_controller.cc 20 using autofill::AutofillWebDataService;
57 autofill::AutofillWebDataService* web_data_service =
95 autofill::AutofillWebDataService* web_data_service =
autofill_data_type_controller.h 19 class AutofillWebDataService;
autofill_data_type_controller.cc 66 autofill::AutofillWebDataService* web_data_service =
autofill_data_type_controller_unittest.cc 30 using autofill::AutofillWebDataService;
55 class FakeWebDataService : public AutofillWebDataService {
58 : AutofillWebDataService(
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.cc 33 using autofill::AutofillWebDataService;
85 scoped_refptr<AutofillWebDataService> wds =
88 void(AutofillWebDataService::*add_observer_func)(
90 &AutofillWebDataService::AddObserver;
96 void(AutofillWebDataService::*remove_observer_func)(
98 &AutofillWebDataService::RemoveObserver;
102 void GetAllAutofillEntriesOnDBThread(AutofillWebDataService* wds,
109 std::vector<AutofillEntry> GetAllAutofillEntries(AutofillWebDataService* wds) {
168 scoped_refptr<AutofillWebDataService> GetWebDataService(int index) {
194 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile)
    [all...]
autofill_helper.h 22 class AutofillWebDataService;
37 scoped_refptr<autofill::AutofillWebDataService> GetWebDataService(
  /external/chromium_org/components/autofill/core/browser/
autofill_client.h 28 class AutofillWebDataService;
62 // Gets the AutofillWebDataService instance associated with the client.
63 virtual scoped_refptr<AutofillWebDataService> GetDatabase() = 0;
test_autofill_client.cc 20 scoped_refptr<AutofillWebDataService> TestAutofillClient::GetDatabase() {
21 return scoped_refptr<AutofillWebDataService>(NULL);
autocomplete_history_manager.h 68 scoped_refptr<AutofillWebDataService> database_;
test_autofill_client.h 24 virtual scoped_refptr<AutofillWebDataService> GetDatabase() OVERRIDE;
autocomplete_history_manager_unittest.cc 34 class MockWebDataService : public AutofillWebDataService {
37 : AutofillWebDataService(base::MessageLoopProxy::current(),
52 virtual scoped_refptr<AutofillWebDataService>
personal_data_manager.h 62 void Init(scoped_refptr<AutofillWebDataService> database,
299 void set_database(scoped_refptr<AutofillWebDataService> database) {
308 scoped_refptr<AutofillWebDataService> database_;
  /external/chromium_org/chrome/browser/ui/autofill/
chrome_autofill_client.h 42 virtual scoped_refptr<AutofillWebDataService> GetDatabase() OVERRIDE;

Completed in 293 milliseconds

1 2