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

Side by Side Diff: chrome/test/base/ui_test_utils_aura.cc

Issue 8832002: Aura: Set focusable on textfield but not on location bar (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_views.cc ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/test/base/ui_test_utils.h" 5 #include "chrome/test/base/ui_test_utils.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "chrome/browser/automation/ui_controls.h" 9 #include "chrome/browser/automation/ui_controls.h"
10 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
11 #include "chrome/browser/ui/browser_window.h" 11 #include "chrome/browser/ui/browser_window.h"
12 #include "chrome/browser/ui/views/frame/browser_view.h" 12 #include "chrome/browser/ui/views/frame/browser_view.h"
13 #include "ui/aura/window.h" 13 #include "ui/aura/window.h"
14 #include "ui/views/focus/focus_manager.h" 14 #include "ui/views/focus/focus_manager.h"
15 15
16 namespace ui_test_utils { 16 namespace ui_test_utils {
17 17
18 bool IsViewFocused(const Browser* browser, ViewID vid) { 18 bool IsViewFocused(const Browser* browser, ViewID vid) {
19 BrowserWindow* browser_window = browser->window(); 19 BrowserWindow* browser_window = browser->window();
20 DCHECK(browser_window); 20 DCHECK(browser_window);
21 gfx::NativeWindow window = browser_window->GetNativeHandle(); 21 gfx::NativeWindow window = browser_window->GetNativeHandle();
22 DCHECK(window); 22 DCHECK(window);
23 const views::Widget* widget = 23 const views::Widget* widget =
24 views::Widget::GetTopLevelWidgetForNativeView(window); 24 views::Widget::GetTopLevelWidgetForNativeView(window);
25 DCHECK(widget); 25 DCHECK(widget);
26 const views::FocusManager* focus_manager = widget->GetFocusManager(); 26 const views::FocusManager* focus_manager = widget->GetFocusManager();
27 DCHECK(focus_manager); 27 DCHECK(focus_manager);
28 DCHECK(focus_manager->GetFocusedView());
28 return focus_manager->GetFocusedView()->id() == vid; 29 return focus_manager->GetFocusedView()->id() == vid;
29 } 30 }
30 31
31 void ClickOnView(const Browser* browser, ViewID vid) { 32 void ClickOnView(const Browser* browser, ViewID vid) {
32 BrowserWindow* browser_window = browser->window(); 33 BrowserWindow* browser_window = browser->window();
33 DCHECK(browser_window); 34 DCHECK(browser_window);
34 views::View* view = 35 views::View* view =
35 reinterpret_cast<BrowserView*>(browser_window)->GetViewByID(vid); 36 reinterpret_cast<BrowserView*>(browser_window)->GetViewByID(vid);
36 DCHECK(view); 37 DCHECK(view);
37 ui_controls::MoveMouseToCenterAndPress( 38 ui_controls::MoveMouseToCenterAndPress(
38 view, 39 view,
39 ui_controls::LEFT, 40 ui_controls::LEFT,
40 ui_controls::DOWN | ui_controls::UP, 41 ui_controls::DOWN | ui_controls::UP,
41 MessageLoop::QuitClosure()); 42 MessageLoop::QuitClosure());
42 RunMessageLoop(); 43 RunMessageLoop();
43 } 44 }
44 45
45 void HideNativeWindow(gfx::NativeWindow window) { 46 void HideNativeWindow(gfx::NativeWindow window) {
46 window->Hide(); 47 window->Hide();
47 } 48 }
48 49
49 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) { 50 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) {
50 window->Show(); 51 window->Show();
51 return true; 52 return true;
52 } 53 }
53 54
54 } // namespace ui_test_utils 55 } // namespace ui_test_utils
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_views.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698