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

Unified Diff: chrome/test/ui_test_utils_mac.cc

Issue 1701006: Implement UI automation on the Mac.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | views/event.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ui_test_utils_mac.cc
===================================================================
--- chrome/test/ui_test_utils_mac.cc (revision 45975)
+++ chrome/test/ui_test_utils_mac.cc (working copy)
@@ -8,6 +8,17 @@
namespace ui_test_utils {
+// Details on why these are unimplemented: ViewIDs are defined in
+// chrome/browser/view_ids.h. For Cocoa (unlike Views GTK) we don't
+// associate ViewIDs with NSViews.
+//
+// Here's an idea on how to implement.
+// - associate the correct ViewID with an NSView on construction (the most work)
+// - create a mapping table, such as chrome/browser/gtk/view_id_util.h
+// - IsViewFocused() then becomes
+// [browser->window()->GetNativeHandle() firstResponder]
+// - ClickOnView() becomes a normal NSMouseDown event forge at the right coords
+
bool IsViewFocused(const Browser* browser, ViewID vid) {
NOTIMPLEMENTED();
return false;
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | views/event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698