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

Unified Diff: chrome/test/base/ui_test_utils_aura.cc

Issue 10869071: chrome/test/base: Remove old ui_test_utils_* files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « no previous file | chrome/test/base/ui_test_utils_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/ui_test_utils_aura.cc
diff --git a/chrome/test/base/ui_test_utils_aura.cc b/chrome/test/base/ui_test_utils_aura.cc
deleted file mode 100644
index 20a418fa2e6cbb73e3d680d9b4f403c1162370fb..0000000000000000000000000000000000000000
--- a/chrome/test/base/ui_test_utils_aura.cc
+++ /dev/null
@@ -1,67 +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/browser_window.h"
-#include "chrome/browser/ui/views/frame/browser_view.h"
-#include "ui/aura/window.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) {
- BrowserWindow* browser_window = browser->window();
- DCHECK(browser_window);
- views::View* view =
- reinterpret_cast<BrowserView*>(browser_window)->GetViewByID(vid);
- DCHECK(view);
- MoveMouseToCenterAndPress(
- view,
- ui_controls::LEFT,
- ui_controls::DOWN | ui_controls::UP,
- MessageLoop::QuitClosure());
- content::RunMessageLoop();
-}
-
-void HideNativeWindow(gfx::NativeWindow window) {
- window->Hide();
-}
-
-bool ShowAndFocusNativeWindow(gfx::NativeWindow window) {
- window->Show();
- return true;
-}
-
-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
« no previous file with comments | « no previous file | chrome/test/base/ui_test_utils_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698