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

Unified Diff: content/public/test/render_view_test.cc

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make this Android CL independent from the ChromeOS CL. Created 5 years, 11 months 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: content/public/test/render_view_test.cc
diff --git a/content/public/test/render_view_test.cc b/content/public/test/render_view_test.cc
index 1f3dcd50036c455307da104f8fd1316edeaa1d1c..f6bc567e0644b80ec3e1f042a72185f1ebfabf3d 100644
--- a/content/public/test/render_view_test.cc
+++ b/content/public/test/render_view_test.cc
@@ -335,6 +335,10 @@ bool RenderViewTest::SimulateElementClick(const std::string& element_id) {
return true;
}
+void RenderViewTest::SimulateFocusChangeCompleteMessageReceived() {
nasko 2015/01/05 21:49:23 Is this method needed without the IPC message? Or
please use gerrit instead 2015/01/13 02:14:55 Upon further investigation (which took a bit longe
+ static_cast<RenderViewImpl*>(view_)->FocusChangeComplete();
+}
+
void RenderViewTest::SetFocused(const blink::WebNode& node) {
RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
impl->focusedNodeChanged(node);

Powered by Google App Engine
This is Rietveld 408576698