Searched refs:AutofillManager (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/components/autofill/core/browser/
H A Dtest_autofill_external_delegate.h12 class AutofillManager;
H A Dautofill_manager.cc161 AutofillManager::AutofillManager( function in class:autofill::AutofillManager
188 AutofillManager::~AutofillManager() {}
191 void AutofillManager::RegisterProfilePrefs(
236 void AutofillManager::MigrateUserPrefs(PrefService* prefs) {
271 void AutofillManager::SetExternalDelegate(AutofillExternalDelegate* delegate) {
273 // work if the delegate has a pointer to the AutofillManager, but
279 void AutofillManager::ShowAutofillSettings() {
284 bool AutofillManager
898 AutofillManager::AutofillManager(AutofillDriver* driver, function in class:autofill::AutofillManager
[all...]
H A Dautocomplete_history_manager_unittest.cc173 MockAutofillExternalDelegate(AutofillManager* autofill_manager,
204 scoped_ptr<AutofillManager> autofill_manager(
205 new AutofillManager(autofill_driver_.get(),
208 AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER));
224 scoped_ptr<AutofillManager> autofill_manager(
225 new AutofillManager(autofill_driver_.get(),
228 AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER));
H A Dautofill_external_delegate.h21 class AutofillManager;
31 // Creates an AutofillExternalDelegate for the specified AutofillManager and
33 AutofillExternalDelegate(AutofillManager* manager,
122 AutofillManager* manager_; // weak.
H A Dautofill_manager.h66 class AutofillManager : public AutofillDownloadManager::Observer { class in namespace:autofill
80 AutofillManager(AutofillDriver* driver,
84 virtual ~AutofillManager();
185 AutofillManager(AutofillDriver* driver,
356 base::WeakPtrFactory<AutofillManager> weak_ptr_factory_;
384 DISALLOW_COPY_AND_ASSIGN(AutofillManager);
H A Dautofill_external_delegate_unittest.cc75 class MockAutofillManager : public AutofillManager {
80 : AutofillManager(driver, client, NULL) {}
108 // Order of destruction is important as AutofillManager relies on
H A Dautofill_metrics_unittest.cc165 class TestAutofillManager : public AutofillManager {
170 : AutofillManager(driver, autofill_client, personal_manager),
184 AutofillManager::metric_logger()));
217 AutofillManager::UploadFormDataAsyncCallback(submitted_form,
249 // Order of destruction is important as AutofillManager relies on
274 // Order of destruction is important as AutofillManager relies on
H A Dautofill_test_utils.cc36 AutofillManager::RegisterProfilePrefs(registry.get());
H A Dautofill_external_delegate.cc45 AutofillExternalDelegate::AutofillExternalDelegate(AutofillManager* manager,
/external/chromium_org/components/autofill/content/browser/
H A Dcontent_autofill_driver.h42 AutofillManager::AutofillDownloadManagerState enable_download_manager);
69 AutofillManager* autofill_manager() { return autofill_manager_.get(); }
76 AutofillManager::AutofillDownloadManagerState enable_download_manager);
90 void SetAutofillManager(scoped_ptr<AutofillManager> manager);
93 // AutofillManager instance via which this object drives the shared Autofill
95 scoped_ptr<AutofillManager> autofill_manager_;
H A Dcontent_autofill_driver.cc38 AutofillManager::AutofillDownloadManagerState enable_download_manager) {
59 AutofillManager::AutofillDownloadManagerState enable_download_manager)
61 autofill_manager_(new AutofillManager(this,
174 AutofillManager::OnFormsSeen)
177 AutofillManager::OnFormSubmitted)
180 AutofillManager::OnTextFieldDidChange)
183 AutofillManager::OnQueryFormFieldAutofill)
186 AutofillManager::OnDidPreviewAutofillFormData)
192 AutofillManager::OnDidFillAutofillFormData)
195 AutofillManager
[all...]
H A Drequest_autocomplete_manager_unittest.cc18 const AutofillManager::AutofillDownloadManagerState kDownloadState =
19 AutofillManager::DISABLE_AUTOFILL_DOWNLOAD_MANAGER;
21 class TestAutofillManager : public AutofillManager {
24 : AutofillManager(driver, client, kAppLocale, kDownloadState),
78 SetAutofillManager(make_scoped_ptr<AutofillManager>(
H A Dcontent_autofill_driver_unittest.cc34 const AutofillManager::AutofillDownloadManagerState kDownloadState =
35 AutofillManager::DISABLE_AUTOFILL_DOWNLOAD_MANAGER;
39 class MockAutofillManager : public AutofillManager {
42 : AutofillManager(driver, client, kAppLocale, kDownloadState) {}
53 scoped_ptr<AutofillManager> autofill_manager(
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_manager_driver.h14 class AutofillManager;
73 // Returns the AutofillManager associated with this instance.
74 virtual autofill::AutofillManager* GetAutofillManager() = 0;
H A Dstub_password_manager_driver.cc61 autofill::AutofillManager* StubPasswordManagerDriver::GetAutofillManager() {
H A Dstub_password_manager_driver.h37 virtual autofill::AutofillManager* GetAutofillManager() OVERRIDE;
/external/chromium_org/components/password_manager/content/browser/
H A Dcontent_password_manager_driver.h17 class AutofillManager;
52 virtual autofill::AutofillManager* GetAutofillManager() OVERRIDE;
H A Dcontent_password_manager_driver.cc148 autofill::AutofillManager* ContentPasswordManagerDriver::GetAutofillManager() {
/external/chromium_org/chrome/browser/autofill/
H A Dcontent_autofill_driver_browsertest.cc67 AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER) {}
87 AutofillManager::RegisterProfilePrefs(autofill_client_.GetPrefRegistry());
H A Dform_structure_browsertest.cc77 AutofillManager* autofill_manager = autofill_driver->autofill_manager();
78 ASSERT_NE(static_cast<AutofillManager*>(NULL), autofill_manager);
H A Dautofill_interactive_uitest.cc212 // Inject the test delegate into the AutofillManager.
216 AutofillManager* autofill_manager = autofill_driver->autofill_manager();
230 AutofillManager* autofill_manager = ContentAutofillDriver::FromWebContents(
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_popup_controller_interactive_uitest.cc27 AutofillManager* autofill_manager,
H A Dautofill_popup_controller_unittest.cc41 MockAutofillExternalDelegate(AutofillManager* autofill_manager,
137 AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER);
/external/chromium_org/chrome/browser/ui/
H A Dtab_helpers.cc134 autofill::AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER);
/external/chromium_org/chrome/browser/prefs/
H A Dbrowser_prefs.cc371 autofill::AutofillManager::RegisterProfilePrefs(registry);
561 autofill::AutofillManager::MigrateUserPrefs(prefs);

Completed in 1986 milliseconds

12