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

Side by Side Diff: ios/web/public/test/fakes/crw_test_web_state_observer.h

Issue 2755013002: Removed webControllerDidSuppressDialog: callback. (Closed)
Patch Set: Self review Created 3 years, 9 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ios/chrome/browser/tabs/tab.mm ('k') | ios/web/public/test/fakes/crw_test_web_state_observer.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698