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

Unified Diff: ios/web/public/test/fakes/test_web_state_observer_util.h

Issue 2724953004: Test actual arguments in WebStateImplTest::ObserverTest. (Closed)
Patch Set: Rebased Created 3 years, 10 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: ios/web/public/test/fakes/test_web_state_observer_util.h
diff --git a/ios/web/public/test/fakes/test_web_state_observer_util.h b/ios/web/public/test/fakes/test_web_state_observer_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..57cf28d2852192f77c6e100abb1ea3399b816bcb
--- /dev/null
+++ b/ios/web/public/test/fakes/test_web_state_observer_util.h
@@ -0,0 +1,121 @@
+// Copyright 2017 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.
+
+#ifndef IOS_WEB_PUBLIC_TEST_FAKES_TEST_WEB_STATE_OBSERVER_UTIL_H_
+#define IOS_WEB_PUBLIC_TEST_FAKES_TEST_WEB_STATE_OBSERVER_UTIL_H_
+
+#include <memory>
+
+#include "ios/web/public/favicon_url.h"
+#include "ios/web/public/load_committed_details.h"
+#include "url/gurl.h"
+
+namespace web {
+
+class NavigationContext;
+class WebState;
+
+// Arguments passed to |ProvisionalNavigationStarted|.
+struct TestStartProvisionalNavigationInfo {
+ WebState* web_state;
+ GURL url;
+};
+
+// Arguments passed to |DidFinishNavigation|.
+struct TestDidFinishNavigationInfo {
+ TestDidFinishNavigationInfo();
+ ~TestDidFinishNavigationInfo();
+ WebState* web_state;
+ std::unique_ptr<web::NavigationContext> context;
+};
+
+// Arguments passed to |NavigationItemCommitted|.
+struct TestCommitNavigationInfo {
+ WebState* web_state;
+ LoadCommittedDetails load_details;
+};
+
+// Arguments passed to |PageLoaded|.
+struct TestLoadPageInfo {
+ WebState* web_state;
+ bool success;
+};
+
+// Arguments passed to |InterstitialDismissed|.
+struct TestDismissInterstitialInfo {
+ WebState* web_state;
+};
+
+// Arguments passed to |LoadProgressChanged|.
+struct TestChangeLoadingProgressInfo {
+ WebState* web_state;
+ double progress;
+};
+
+// Arguments passed to |NavigationItemsPruned|.
+struct TestNavigationItemsPrunedInfo {
+ WebState* web_state;
+ int count;
+};
+
+// Arguments passed to |NavigationItemChanged|.
+struct TestNavigationItemChangedInfo {
+ WebState* web_state;
+};
+
+// Arguments passed to |TitleWasSet|.
+struct TestTitleWasSetInfo {
+ WebState* web_state;
+};
+
+// Arguments passed to |DocumentSubmitted|.
+struct TestSubmitDocumentInfo {
+ WebState* web_state;
+ std::string form_name;
+ bool user_initiated;
+};
+
+// Arguments passed to |FormActivityRegistered|.
+struct TestFormActivityInfo {
+ TestFormActivityInfo();
+ ~TestFormActivityInfo();
+ WebState* web_state;
+ std::string form_name;
+ std::string field_name;
+ std::string type;
+ std::string value;
+ bool input_missing;
+};
+
+// Arguments passed to |FaviconUrlUpdated|.
+struct TestUpdateFaviconUrlCandidatesInfo {
+ TestUpdateFaviconUrlCandidatesInfo();
+ ~TestUpdateFaviconUrlCandidatesInfo();
+ WebState* web_state;
+ std::vector<web::FaviconURL> candidates;
+};
+
+// Arguments passed to |RenderProcessGone|.
+struct TestRenderProcessGoneInfo {
+ WebState* web_state;
+};
+
+// Arguments passed to |WebStateDestroyed|.
+struct TestWebStateDestroyedInfo {
+ WebState* web_state;
+};
+
+// Arguments passed to |DidStartLoading|.
+struct TestStartLoadingInfo {
+ WebState* web_state;
+};
+
+// Arguments passed to |DidStopLoading|.
+struct TestStopLoadingInfo {
+ WebState* web_state;
+};
+
+} // namespace web
+
+#endif // IOS_WEB_PUBLIC_TEST_FAKES_TEST_WEB_STATE_OBSERVER_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698