| Index: ios/web/public/test/fakes/crw_test_web_state_observer.h
|
| diff --git a/ios/web/public/test/fakes/crw_test_web_state_observer.h b/ios/web/public/test/fakes/crw_test_web_state_observer.h
|
| index 5befde4d5732980999b532ff433750e266e9c717..6d01ab0f21e79a7277018e14e9d124f2edf45fb9 100644
|
| --- a/ios/web/public/test/fakes/crw_test_web_state_observer.h
|
| +++ b/ios/web/public/test/fakes/crw_test_web_state_observer.h
|
| @@ -46,6 +46,11 @@ struct TestChangeLoadingProgressInfo {
|
| double progress;
|
| };
|
|
|
| +// Arguments passed to |webStateDidChangeTitle:|.
|
| +struct TestTitleWasSetInfo {
|
| + WebState* web_state;
|
| +};
|
| +
|
| // Arguments passed to |webState:didSubmitDocumentWithFormNamed:userInitiated:|.
|
| struct TestSubmitDocumentInfo {
|
| WebState* web_state;
|
| @@ -116,6 +121,8 @@ struct TestStartLoadingInfo {
|
| // Arguments passed to |webState:didChangeLoadingProgress:|.
|
| @property(nonatomic, readonly)
|
| web::TestChangeLoadingProgressInfo* changeLoadingProgressInfo;
|
| +// Arguments passed to |webStateDidChangeTitle:|.
|
| +@property(nonatomic, readonly) web::TestTitleWasSetInfo* titleWasSetInfo;
|
| // Arguments passed to |webState:didSubmitDocumentWithFormNamed:userInitiated:|.
|
| @property(nonatomic, readonly) web::TestSubmitDocumentInfo* submitDocumentInfo;
|
| // Arguments passed to
|
|
|