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

Unified Diff: chrome/test/ui_test_utils.cc

Issue 1371002: Fixes bug where triggering session restore while the browser was... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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
Index: chrome/test/ui_test_utils.cc
===================================================================
--- chrome/test/ui_test_utils.cc (revision 42688)
+++ chrome/test/ui_test_utils.cc (working copy)
@@ -214,60 +214,60 @@
DISALLOW_COPY_AND_ASSIGN(DownloadsCompleteObserver);
};
-// Used to block until an application modal dialog is shown.
-class AppModalDialogObserver : public NotificationObserver {
+template <class T>
+class SimpleNotificationObserver : public NotificationObserver {
public:
- AppModalDialogObserver() : dialog_(NULL) {}
-
- AppModalDialog* WaitForAppModalDialog() {
- registrar_.Add(this, NotificationType::APP_MODAL_DIALOG_SHOWN,
- NotificationService::AllSources());
- dialog_ = NULL;
+ SimpleNotificationObserver(NotificationType notification_type,
+ T* source) {
+ registrar_.Add(this, notification_type, Source<T>(source));
ui_test_utils::RunMessageLoop();
- DCHECK(dialog_);
- return dialog_;
}
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
- if (type == NotificationType::APP_MODAL_DIALOG_SHOWN) {
- registrar_.Remove(this, NotificationType::APP_MODAL_DIALOG_SHOWN,
- NotificationService::AllSources());
- dialog_ = Source<AppModalDialog>(source).ptr();
- MessageLoopForUI::current()->Quit();
- } else {
- NOTREACHED();
- }
+ MessageLoopForUI::current()->Quit();
}
private:
NotificationRegistrar registrar_;
- AppModalDialog* dialog_;
-
- DISALLOW_COPY_AND_ASSIGN(AppModalDialogObserver);
+ DISALLOW_COPY_AND_ASSIGN(SimpleNotificationObserver);
};
-template <class T>
-class SimpleNotificationObserver : public NotificationObserver {
+// SimpleNotificationObserver that waits for a single notification. When the
+// notification is observer the source (of type S) is recorded and the message
+// loop stopped. Use |source()| to access the source after the constructor
+// returns.
+template <class S>
+class SimpleNotificationObserverWithSource : public NotificationObserver {
public:
- SimpleNotificationObserver(NotificationType notification_type,
- T* source) {
- registrar_.Add(this, notification_type, Source<T>(source));
+ SimpleNotificationObserverWithSource(NotificationType notification_type,
+ const NotificationSource& source)
+ : source_(NULL) {
+ registrar_.Add(this, notification_type, source);
ui_test_utils::RunMessageLoop();
}
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
+ source_ = Source<S>(source).ptr();
+
+ // Remove observer now, so that if there any other notifications we don't
+ // clobber source_.
+ registrar_.RemoveAll();
+
MessageLoopForUI::current()->Quit();
}
+ S* source() const { return source_; }
+
private:
+ S* source_;
NotificationRegistrar registrar_;
- DISALLOW_COPY_AND_ASSIGN(SimpleNotificationObserver);
+ DISALLOW_COPY_AND_ASSIGN(SimpleNotificationObserverWithSource);
};
class LanguageDetectionNotificationObserver : public NotificationObserver {
@@ -447,6 +447,13 @@
new_tab_observer(NotificationType::LOAD_STOP, controller);
}
+Browser* WaitForNewBrowser() {
+ SimpleNotificationObserverWithSource<Browser> observer(
+ NotificationType::BROWSER_WINDOW_READY,
+ NotificationService::AllSources());
+ return observer.source();
+}
+
void OpenURLOffTheRecord(Profile* profile, const GURL& url) {
Browser::OpenURLOffTheRecord(profile, url);
Browser* browser = BrowserList::FindBrowserWithType(
@@ -556,8 +563,10 @@
}
AppModalDialog* WaitForAppModalDialog() {
- AppModalDialogObserver observer;
- return observer.WaitForAppModalDialog();
+ SimpleNotificationObserverWithSource<AppModalDialog> observer(
+ NotificationType::APP_MODAL_DIALOG_SHOWN,
+ NotificationService::AllSources());
+ return observer.source();
}
void CrashTab(TabContents* tab) {
« chrome/browser/sessions/session_restore_browsertest.cc ('K') | « chrome/test/ui_test_utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698