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

Side by Side Diff: content/public/test/render_view_test.h

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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 unified diff | Download patch
« no previous file with comments | « content/public/renderer/render_view_observer.h ('k') | content/public/test/render_view_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ 5 #ifndef CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_
6 #define CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ 6 #define CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 // Returns the bounds (coordinates and size) of the element with id 101 // Returns the bounds (coordinates and size) of the element with id
102 // |element_id|. Returns an empty rect if such an element was not found. 102 // |element_id|. Returns an empty rect if such an element was not found.
103 gfx::Rect GetElementBounds(const std::string& element_id); 103 gfx::Rect GetElementBounds(const std::string& element_id);
104 104
105 // Sends a left mouse click in the middle of the element with id |element_id|. 105 // Sends a left mouse click in the middle of the element with id |element_id|.
106 // Returns true if the event was sent, false otherwise (typically because 106 // Returns true if the event was sent, false otherwise (typically because
107 // the element was not found). 107 // the element was not found).
108 bool SimulateElementClick(const std::string& element_id); 108 bool SimulateElementClick(const std::string& element_id);
109 109
110 // Sends a left mouse click at the |point|.
111 void SimulatePointClick(const gfx::Point& point);
112
110 // Simulates |node| being focused. 113 // Simulates |node| being focused.
111 void SetFocused(const blink::WebNode& node); 114 void SetFocused(const blink::WebNode& node);
112 115
113 // Simulates a navigation with a type of reload to the given url. 116 // Simulates a navigation with a type of reload to the given url.
114 void Reload(const GURL& url); 117 void Reload(const GURL& url);
115 118
116 // Returns the IPC message ID of the navigation message. 119 // Returns the IPC message ID of the navigation message.
117 uint32 GetNavigationIPCType(); 120 uint32 GetNavigationIPCType();
118 121
119 // Resize the view. 122 // Resize the view.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 scoped_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_; 165 scoped_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_;
163 #endif 166 #endif
164 167
165 private: 168 private:
166 void GoToOffset(int offset, const PageState& state); 169 void GoToOffset(int offset, const PageState& state);
167 }; 170 };
168 171
169 } // namespace content 172 } // namespace content
170 173
171 #endif // CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ 174 #endif // CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_
OLDNEW
« no previous file with comments | « content/public/renderer/render_view_observer.h ('k') | content/public/test/render_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698