diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-20 02:34:45 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-20 02:34:45 +0000 |
commit | a7fe9110edf7ad578f19655e6d86030cc01e53e2 (patch) | |
tree | 6810038b3bb6f2d04904406c4a40c2f3e62c15e4 /content/browser/session_history_browsertest.cc | |
parent | d5b2197037aac358c1ac7c747e2761e1562a584b (diff) | |
download | chromium_src-a7fe9110edf7ad578f19655e6d86030cc01e53e2.zip chromium_src-a7fe9110edf7ad578f19655e6d86030cc01e53e2.tar.gz chromium_src-a7fe9110edf7ad578f19655e6d86030cc01e53e2.tar.bz2 |
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
Diffstat (limited to 'content/browser/session_history_browsertest.cc')
-rw-r--r-- | content/browser/session_history_browsertest.cc | 12 |
1 files changed, 6 insertions, 6 deletions
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(); } |