| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/test/ui_test_utils.h" | |
| 6 | |
| 7 #include "base/logging.h" | |
| 8 | |
| 9 namespace ui_test_utils { | |
| 10 | |
| 11 // Details on why these are unimplemented: ViewIDs are defined in | |
| 12 // chrome/browser/view_ids.h. For Cocoa (unlike Views GTK) we don't | |
| 13 // associate ViewIDs with NSViews. | |
| 14 // | |
| 15 // Here's an idea on how to implement. | |
| 16 // - associate the correct ViewID with an NSView on construction (the most work) | |
| 17 // - create a mapping table, such as chrome/browser/gtk/view_id_util.h | |
| 18 // - IsViewFocused() then becomes | |
| 19 // [browser->window()->GetNativeHandle() firstResponder] | |
| 20 // - ClickOnView() becomes a normal NSMouseDown event forge at the right coords | |
| 21 | |
| 22 bool IsViewFocused(const Browser* browser, ViewID vid) { | |
| 23 NOTIMPLEMENTED(); | |
| 24 return false; | |
| 25 } | |
| 26 | |
| 27 void ClickOnView(const Browser* browser, ViewID vid) { | |
| 28 NOTIMPLEMENTED(); | |
| 29 } | |
| 30 | |
| 31 } // namespace ui_test_utils | |
| OLD | NEW |