Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Unified Diff: components/autofill/content/renderer/autofill_agent.h

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide popup when resizing the viewport resulted in movement of the focused element. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/autofill/content/renderer/autofill_agent.h
diff --git a/components/autofill/content/renderer/autofill_agent.h b/components/autofill/content/renderer/autofill_agent.h
index 02d4c9267ff35123abcfdd508c0c2da26ef0f663..6b832762d2d53f418d06fe9804f2a9f90a4cb51e 100644
--- a/components/autofill/content/renderer/autofill_agent.h
+++ b/components/autofill/content/renderer/autofill_agent.h
@@ -72,7 +72,7 @@ class AutofillAgent : public content::RenderFrameObserver,
void DidChangeScrollOffset(blink::WebLocalFrame* frame) override;
void FocusedNodeChanged(const blink::WebNode& node) override;
void OrientationChangeEvent() override;
- void Resized() override;
+ void FocusedElementMovedOnResize() override;
void FrameWillClose(blink::WebFrame* frame) override;
AutofillAgent* agent_;
@@ -127,7 +127,7 @@ class AutofillAgent : public content::RenderFrameObserver,
void DidChangeScrollOffset(blink::WebLocalFrame* frame);
void FocusedNodeChanged(const blink::WebNode& node);
void OrientationChangeEvent();
- void Resized();
+ void FocusedElementMovedOnResize();
void LegacyFrameWillClose(blink::WebFrame* frame);
// PageClickListener:

Powered by Google App Engine
This is Rietveld 408576698