| Index: components/autofill/content/renderer/page_click_tracker.h
|
| diff --git a/components/autofill/content/renderer/page_click_tracker.h b/components/autofill/content/renderer/page_click_tracker.h
|
| index 9cb63535f64a64c36b1abb09595f3b393f75feca..3defe2ca55e1ca3cf8ebe7e5fcc6c8ff4b727a69 100644
|
| --- a/components/autofill/content/renderer/page_click_tracker.h
|
| +++ b/components/autofill/content/renderer/page_click_tracker.h
|
| @@ -12,6 +12,10 @@
|
| #include "content/public/renderer/render_view_observer.h"
|
| #include "third_party/WebKit/public/web/WebNode.h"
|
|
|
| +namespace gfx {
|
| +class RectF;
|
| +}
|
| +
|
| namespace autofill {
|
|
|
| class PageClickListener;
|
| @@ -41,8 +45,9 @@ class PageClickTracker : public content::RenderViewObserver {
|
| void FocusedNodeChanged(const blink::WebNode& node) override;
|
| void FocusChangeComplete() override;
|
|
|
| - // Called there is a tap or click at |x|, |y|.
|
| - void PotentialActivationAt(int x, int y);
|
| + // Called if there is a tap or click at |region|. Clicks are 1x1 regions, but
|
| + // taps are wider.
|
| + void PotentialActivationAt(const gfx::RectF& region);
|
|
|
| // The node that was clicked. Non-null only when the animations caused by
|
| // focus change are still ongoing.
|
|
|