| 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 15 matching lines...) Expand all Loading... |
| 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:|. | 33 // Arguments passed to |webStateDidChangeVisibleSecurityState:|. |
| 34 @property(nonatomic, readonly) web::TestDidChangeVisibleSecurityStateInfo* | 34 @property(nonatomic, readonly) web::TestDidChangeVisibleSecurityStateInfo* |
| 35 didChangeVisibleSecurityStateInfo; | 35 didChangeVisibleSecurityStateInfo; |
| 36 // Arguments passed to |webStateDidSuppressDialog:|. |
| 37 @property(nonatomic, readonly) |
| 38 web::TestDidSuppressDialogInfo* didSuppressDialogInfo; |
| 36 // Arguments passed to |webState:didSubmitDocumentWithFormNamed:userInitiated:|. | 39 // Arguments passed to |webState:didSubmitDocumentWithFormNamed:userInitiated:|. |
| 37 @property(nonatomic, readonly) web::TestSubmitDocumentInfo* submitDocumentInfo; | 40 @property(nonatomic, readonly) web::TestSubmitDocumentInfo* submitDocumentInfo; |
| 38 // Arguments passed to | 41 // Arguments passed to |
| 39 // |webState:didRegisterFormActivityWithFormNamed:fieldName:type:value:|. | 42 // |webState:didRegisterFormActivityWithFormNamed:fieldName:type:value:|. |
| 40 @property(nonatomic, readonly) web::TestFormActivityInfo* formActivityInfo; | 43 @property(nonatomic, readonly) web::TestFormActivityInfo* formActivityInfo; |
| 41 // Arguments passed to |webState:didUpdateFaviconURLCandidates|. | 44 // Arguments passed to |webState:didUpdateFaviconURLCandidates|. |
| 42 @property(nonatomic, readonly) | 45 @property(nonatomic, readonly) |
| 43 web::TestUpdateFaviconUrlCandidatesInfo* updateFaviconUrlCandidatesInfo; | 46 web::TestUpdateFaviconUrlCandidatesInfo* updateFaviconUrlCandidatesInfo; |
| 44 // Arguments passed to |webState:renderProcessGoneForWebState:|. | 47 // Arguments passed to |webState:renderProcessGoneForWebState:|. |
| 45 @property(nonatomic, readonly) | 48 @property(nonatomic, readonly) |
| 46 web::TestRenderProcessGoneInfo* renderProcessGoneInfo; | 49 web::TestRenderProcessGoneInfo* renderProcessGoneInfo; |
| 47 // Arguments passed to |webStateDestroyed:|. | 50 // Arguments passed to |webStateDestroyed:|. |
| 48 @property(nonatomic, readonly) | 51 @property(nonatomic, readonly) |
| 49 web::TestWebStateDestroyedInfo* webStateDestroyedInfo; | 52 web::TestWebStateDestroyedInfo* webStateDestroyedInfo; |
| 50 // Arguments passed to |webStateDidStopLoading:|. | 53 // Arguments passed to |webStateDidStopLoading:|. |
| 51 @property(nonatomic, readonly) web::TestStopLoadingInfo* stopLoadingInfo; | 54 @property(nonatomic, readonly) web::TestStopLoadingInfo* stopLoadingInfo; |
| 52 // Arguments passed to |webStateDidStartLoading:|. | 55 // Arguments passed to |webStateDidStartLoading:|. |
| 53 @property(nonatomic, readonly) web::TestStartLoadingInfo* startLoadingInfo; | 56 @property(nonatomic, readonly) web::TestStartLoadingInfo* startLoadingInfo; |
| 54 | 57 |
| 55 @end | 58 @end |
| 56 | 59 |
| 57 #endif // IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ | 60 #endif // IOS_WEB_PUBLIC_TEST_FAKES_CRW_TEST_WEB_STATE_OBSERVER_H_ |
| OLD | NEW |