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

Unified Diff: chrome/test/remoting/page_load_notification_observer.h

Issue 771003002: Add support for deferring app initialization when testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years 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/remoting/page_load_notification_observer.h
diff --git a/chrome/test/remoting/page_load_notification_observer.h b/chrome/test/remoting/page_load_notification_observer.h
index 0a8890b60398738fb32b1819dd742840df85b761..391dd860272c9cf811fedf29feedf6025f0aa670 100644
--- a/chrome/test/remoting/page_load_notification_observer.h
+++ b/chrome/test/remoting/page_load_notification_observer.h
@@ -23,9 +23,16 @@ class PageLoadNotificationObserver
~PageLoadNotificationObserver() override;
+ void set_ignore_url_parameters(bool ignore_url_parameters) {
+ ignore_url_parameters_ = ignore_url_parameters;
+ }
+
private:
bool IsTargetLoaded();
+
GURL target_;
+ bool ignore_url_parameters_;
+
DISALLOW_COPY_AND_ASSIGN(PageLoadNotificationObserver);
};

Powered by Google App Engine
This is Rietveld 408576698