| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ | 5 #ifndef IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ |
| 6 #define IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ | 6 #define IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ |
| 7 | 7 |
| 8 #include "ios/web/public/test/fakes/test_web_state_observer_util.h" | 8 #include "ios/web/public/test/fakes/test_web_state_observer_util.h" |
| 9 #import "ios/web/public/web_state/web_state_observer_bridge.h" | 9 #import "ios/web/public/web_state/web_state_observer_bridge.h" |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // Arguments passed to |webState:didLoadPageWithSuccess:|. | 23 // Arguments passed to |webState:didLoadPageWithSuccess:|. |
| 24 @property(nonatomic, readonly) web::TestLoadPageInfo* loadPageInfo; | 24 @property(nonatomic, readonly) web::TestLoadPageInfo* loadPageInfo; |
| 25 // Arguments passed to |webStateDidDismissInterstitial:|. | 25 // Arguments passed to |webStateDidDismissInterstitial:|. |
| 26 @property(nonatomic, readonly) | 26 @property(nonatomic, readonly) |
| 27 web::TestDismissInterstitialInfo* dismissInterstitialInfo; | 27 web::TestDismissInterstitialInfo* dismissInterstitialInfo; |
| 28 // Arguments passed to |webState:didChangeLoadingProgress:|. | 28 // Arguments passed to |webState:didChangeLoadingProgress:|. |
| 29 @property(nonatomic, readonly) | 29 @property(nonatomic, readonly) |
| 30 web::TestChangeLoadingProgressInfo* changeLoadingProgressInfo; | 30 web::TestChangeLoadingProgressInfo* changeLoadingProgressInfo; |
| 31 // Arguments passed to |webStateDidChangeTitle:|. | 31 // Arguments passed to |webStateDidChangeTitle:|. |
| 32 @property(nonatomic, readonly) web::TestTitleWasSetInfo* titleWasSetInfo; | 32 @property(nonatomic, readonly) web::TestTitleWasSetInfo* titleWasSetInfo; |
| 33 // Arguments passed to |webStateDidChangeVisibleSecurityState:|. |
| 34 @property(nonatomic, readonly) web::TestDidChangeVisibleSecurityStateInfo* |
| 35 didChangeVisibleSecurityStateInfo; |
| 33 // Arguments passed to |webState:didSubmitDocumentWithFormNamed:userInitiated:|. | 36 // Arguments passed to |webState:didSubmitDocumentWithFormNamed:userInitiated:|. |
| 34 @property(nonatomic, readonly) web::TestSubmitDocumentInfo* submitDocumentInfo; | 37 @property(nonatomic, readonly) web::TestSubmitDocumentInfo* submitDocumentInfo; |
| 35 // Arguments passed to | 38 // Arguments passed to |
| 36 // |webState:didRegisterFormActivityWithFormNamed:fieldName:type:value:|. | 39 // |webState:didRegisterFormActivityWithFormNamed:fieldName:type:value:|. |
| 37 @property(nonatomic, readonly) web::TestFormActivityInfo* formActivityInfo; | 40 @property(nonatomic, readonly) web::TestFormActivityInfo* formActivityInfo; |
| 38 // Arguments passed to |webState:didUpdateFaviconURLCandidates|. | 41 // Arguments passed to |webState:didUpdateFaviconURLCandidates|. |
| 39 @property(nonatomic, readonly) | 42 @property(nonatomic, readonly) |
| 40 web::TestUpdateFaviconUrlCandidatesInfo* updateFaviconUrlCandidatesInfo; | 43 web::TestUpdateFaviconUrlCandidatesInfo* updateFaviconUrlCandidatesInfo; |
| 41 // Arguments passed to |webState:renderProcessGoneForWebState:|. | 44 // Arguments passed to |webState:renderProcessGoneForWebState:|. |
| 42 @property(nonatomic, readonly) | 45 @property(nonatomic, readonly) |
| 43 web::TestRenderProcessGoneInfo* renderProcessGoneInfo; | 46 web::TestRenderProcessGoneInfo* renderProcessGoneInfo; |
| 44 // Arguments passed to |webStateDestroyed:|. | 47 // Arguments passed to |webStateDestroyed:|. |
| 45 @property(nonatomic, readonly) | 48 @property(nonatomic, readonly) |
| 46 web::TestWebStateDestroyedInfo* webStateDestroyedInfo; | 49 web::TestWebStateDestroyedInfo* webStateDestroyedInfo; |
| 47 // Arguments passed to |webStateDidStopLoading:|. | 50 // Arguments passed to |webStateDidStopLoading:|. |
| 48 @property(nonatomic, readonly) web::TestStopLoadingInfo* stopLoadingInfo; | 51 @property(nonatomic, readonly) web::TestStopLoadingInfo* stopLoadingInfo; |
| 49 // Arguments passed to |webStateDidStartLoading:|. | 52 // Arguments passed to |webStateDidStartLoading:|. |
| 50 @property(nonatomic, readonly) web::TestStartLoadingInfo* startLoadingInfo; | 53 @property(nonatomic, readonly) web::TestStartLoadingInfo* startLoadingInfo; |
| 51 | 54 |
| 52 @end | 55 @end |
| 53 | 56 |
| 54 #endif // IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ | 57 #endif // IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ |
| OLD | NEW |