OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ |
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/scoped_vector.h" | 18 #include "base/memory/scoped_vector.h" |
19 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
20 #include "base/strings/string16.h" | 20 #include "base/strings/string16.h" |
21 #include "base/time/time.h" | 21 #include "base/time/time.h" |
22 #include "components/autofill/core/browser/autocomplete_history_manager.h" | 22 #include "components/autofill/core/browser/autocomplete_history_manager.h" |
23 #include "components/autofill/core/browser/autofill_download.h" | 23 #include "components/autofill/core/browser/autofill_download.h" |
24 #include "components/autofill/core/browser/autofill_manager_delegate.h" | 24 #include "components/autofill/core/browser/autofill_manager_delegate.h" |
25 #include "components/autofill/core/browser/form_structure.h" | 25 #include "components/autofill/core/browser/form_structure.h" |
26 #include "components/autofill/core/browser/personal_data_manager.h" | 26 #include "components/autofill/core/browser/personal_data_manager.h" |
27 #include "components/autofill/core/common/form_data.h" | 27 #include "components/autofill/core/common/form_data.h" |
28 #include "components/autofill/core/common/forms_seen_state.h" | 28 #include "components/autofill/core/common/forms_seen_state.h" |
| 29 #include "components/autofill/core/common/password_form.h" |
29 #include "third_party/WebKit/public/web/WebFormElement.h" | 30 #include "third_party/WebKit/public/web/WebFormElement.h" |
30 | 31 |
31 class GURL; | 32 class GURL; |
32 | 33 |
33 namespace content { | 34 namespace content { |
34 class RenderViewHost; | 35 class RenderViewHost; |
35 class WebContents; | 36 class WebContents; |
36 } | 37 } |
37 | 38 |
38 namespace gfx { | 39 namespace gfx { |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 const base::TimeTicks& timestamp); | 129 const base::TimeTicks& timestamp); |
129 | 130 |
130 void OnTextFieldDidChange(const FormData& form, | 131 void OnTextFieldDidChange(const FormData& form, |
131 const FormFieldData& field, | 132 const FormFieldData& field, |
132 const base::TimeTicks& timestamp); | 133 const base::TimeTicks& timestamp); |
133 | 134 |
134 // The |bounding_box| is a window relative value. | 135 // The |bounding_box| is a window relative value. |
135 void OnQueryFormFieldAutofill(int query_id, | 136 void OnQueryFormFieldAutofill(int query_id, |
136 const FormData& form, | 137 const FormData& form, |
137 const FormFieldData& field, | 138 const FormFieldData& field, |
| 139 const PasswordForm& password_form, |
138 const gfx::RectF& bounding_box, | 140 const gfx::RectF& bounding_box, |
139 bool display_warning); | 141 bool display_warning); |
140 void OnDidEndTextFieldEditing(); | 142 void OnDidEndTextFieldEditing(); |
141 void OnHideAutofillUI(); | 143 void OnHideAutofillUI(); |
142 void OnAddPasswordFormMapping( | 144 void OnAddPasswordFormMapping( |
143 const FormFieldData& form, | 145 const FormFieldData& form, |
144 const PasswordFormFillData& fill_data); | 146 const PasswordFormFillData& fill_data); |
145 void OnShowPasswordSuggestions( | 147 void OnShowPasswordSuggestions(const FormFieldData& field, |
146 const FormFieldData& field, | 148 const PasswordForm& password_form, |
147 const gfx::RectF& bounds, | 149 const gfx::RectF& bounds, |
148 const std::vector<base::string16>& suggestions, | 150 const std::vector<base::string16>& suggestions, |
149 const std::vector<base::string16>& realms); | 151 const std::vector<base::string16>& realms); |
150 void OnSetDataList(const std::vector<base::string16>& values, | 152 void OnSetDataList(const std::vector<base::string16>& values, |
151 const std::vector<base::string16>& labels); | 153 const std::vector<base::string16>& labels); |
152 | 154 |
153 // Try and upload |form|. This differs from OnFormSubmitted() in a few ways. | 155 // Try and upload |form|. This differs from OnFormSubmitted() in a few ways. |
154 // - This function will only label the first <input type="password"> field | 156 // - This function will only label the first <input type="password"> field |
155 // as ACCOUNT_CREATION_PASSWORD. Other fields will stay unlabeled, as they | 157 // as ACCOUNT_CREATION_PASSWORD. Other fields will stay unlabeled, as they |
156 // should have been labeled during the upload for OnFormSubmitted(). | 158 // should have been labeled during the upload for OnFormSubmitted(). |
157 // - This function does not assume that |form| is being uploaded during | 159 // - This function does not assume that |form| is being uploaded during |
158 // the same browsing session as it was originally submitted (as we may | 160 // the same browsing session as it was originally submitted (as we may |
159 // not have the necessary information to classify the form at that time) | 161 // not have the necessary information to classify the form at that time) |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 UserHappinessFormLoadAndSubmission); | 366 UserHappinessFormLoadAndSubmission); |
365 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 367 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |
366 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 368 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
367 FormSubmittedAutocompleteEnabled); | 369 FormSubmittedAutocompleteEnabled); |
368 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 370 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
369 }; | 371 }; |
370 | 372 |
371 } // namespace autofill | 373 } // namespace autofill |
372 | 374 |
373 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ | 375 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ |
OLD | NEW |