Chromium Code Reviews| Index: components/autofill/content/renderer/form_autofill_util.h |
| diff --git a/components/autofill/content/renderer/form_autofill_util.h b/components/autofill/content/renderer/form_autofill_util.h |
| index 1be05cdac08433fab3baf5dd2e293ea3d2af413c..1e478c640b69f2d4ebb1771e2539d3ac926b3f49 100644 |
| --- a/components/autofill/content/renderer/form_autofill_util.h |
| +++ b/components/autofill/content/renderer/form_autofill_util.h |
| @@ -176,6 +176,12 @@ bool IsWebElementEmpty(const blink::WebElement& element); |
| // Return a gfx::RectF that is the bounding box for |element| scaled by |scale|. |
| gfx::RectF GetScaledBoundingBox(float scale, blink::WebElement* element); |
| +// Previews the |input_element| with supplied |suggestion| and |user_input|. |
| +// |input_element| should not be null. |
| +void PreviewSuggestion(blink::WebFormControlElement* input_element, |
|
please use gerrit instead
2015/06/30 19:06:23
You're modifying |input_element|. Modified paramet
Pritam Nikam
2015/07/01 17:25:59
Done.
|
| + const base::string16& suggestion, |
| + const base::string16& user_input); |
| + |
| } // namespace autofill |
| #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_FORM_AUTOFILL_UTIL_H_ |