From a7fe9110edf7ad578f19655e6d86030cc01e53e2 Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Fri, 20 Jul 2012 02:34:45 +0000 Subject: Create content\public\test\test_utils.h to hold common test classes that are used by unit and browser tests. unit tests shouldn't be including ui_test_utils.h. BUG=90448 Review URL: https://chromiumcodereview.appspot.com/10807047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147602 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/session_history_browsertest.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'content/browser/session_history_browsertest.cc') diff --git a/content/browser/session_history_browsertest.cc b/content/browser/session_history_browsertest.cc index f4e2f77..fe28fe4 100644 --- a/content/browser/session_history_browsertest.cc +++ b/content/browser/session_history_browsertest.cc @@ -75,17 +75,17 @@ class SessionHistoryTest : public InProcessBrowserTest { } void GoBack() { - ui_test_utils::WindowedNotificationObserver load_stop_observer( - content::NOTIFICATION_LOAD_STOP, - content::NotificationService::AllSources()); + content::WindowedNotificationObserver load_stop_observer( + content::NOTIFICATION_LOAD_STOP, + content::NotificationService::AllSources()); chrome::GoBack(browser(), CURRENT_TAB); load_stop_observer.Wait(); } void GoForward() { - ui_test_utils::WindowedNotificationObserver load_stop_observer( - content::NOTIFICATION_LOAD_STOP, - content::NotificationService::AllSources()); + content::WindowedNotificationObserver load_stop_observer( + content::NOTIFICATION_LOAD_STOP, + content::NotificationService::AllSources()); chrome::GoForward(browser(), CURRENT_TAB); load_stop_observer.Wait(); } -- cgit v1.1