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

Unified Diff: chrome/browser/ui/views/test/ui_test_utils_views.cc

Issue 11414223: Move the test functions that deal with focus to interactive_ui_tets_utils.h and into the interactiv… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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: chrome/browser/ui/views/test/ui_test_utils_views.cc
===================================================================
--- chrome/browser/ui/views/test/ui_test_utils_views.cc (revision 170118)
+++ chrome/browser/ui/views/test/ui_test_utils_views.cc (working copy)
@@ -1,54 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/test/base/ui_test_utils.h"
-
-#include "base/logging.h"
-#include "base/message_loop.h"
-#include "chrome/browser/ui/browser.h"
-#include "chrome/browser/ui/views/frame/browser_view.h"
-#include "ui/ui_controls/ui_controls.h"
-#include "ui/views/focus/focus_manager.h"
-
-namespace ui_test_utils {
-
-bool IsViewFocused(const Browser* browser, ViewID vid) {
- BrowserWindow* browser_window = browser->window();
- DCHECK(browser_window);
- gfx::NativeWindow window = browser_window->GetNativeWindow();
- DCHECK(window);
- const views::Widget* widget =
- views::Widget::GetTopLevelWidgetForNativeView(window);
- DCHECK(widget);
- const views::FocusManager* focus_manager = widget->GetFocusManager();
- DCHECK(focus_manager);
- DCHECK(focus_manager->GetFocusedView());
- return focus_manager->GetFocusedView()->id() == vid;
-}
-
-void ClickOnView(const Browser* browser, ViewID vid) {
- views::View* view =
- BrowserView::GetBrowserViewForBrowser(browser)->GetViewByID(vid);
- DCHECK(view);
- MoveMouseToCenterAndPress(
- view,
- ui_controls::LEFT,
- ui_controls::DOWN | ui_controls::UP,
- MessageLoop::QuitClosure());
- content::RunMessageLoop();
-}
-
-void MoveMouseToCenterAndPress(views::View* view,
- ui_controls::MouseButton button,
- int state,
- const base::Closure& closure) {
- DCHECK(view);
- DCHECK(view->GetWidget());
- gfx::Point view_center(view->width() / 2, view->height() / 2);
- views::View::ConvertPointToScreen(view, &view_center);
- ui_controls::SendMouseMove(view_center.x(), view_center.y());
- ui_controls::SendMouseEventsNotifyWhenDone(button, state, closure);
-}
-
-} // namespace ui_test_utils

Powered by Google App Engine
This is Rietveld 408576698