lpw
2022-02-15 2e29a3a585524a054640bb6e7bdf26fe77ba1f17
commit | author | age
2e29a3 1 /*
L 2  * Copyright (c) Meta Platforms, Inc. and affiliates.
3  * All rights reserved.
4  *
5  * This source code is licensed under the license found in the
6  * LICENSE file in the root directory of this source tree.
7  */
8
9 #if !TARGET_OS_TV
10
11 #import <Foundation/Foundation.h>
12
13 #import <FBSDKCoreKit/FBSDKWebDialog.h>
14
15 @class FBSDKWebDialog;
16
17 NS_ASSUME_NONNULL_BEGIN
18
19 /**
20  Internal Type exposed to facilitate transition to Swift.
21  API Subject to change or removal without warning. Do not use.
22
23  @warning INTERNAL - DO NOT USE
24  */
25 NS_SWIFT_NAME(WebDialogDelegate)
26 @protocol FBSDKWebDialogDelegate
27
28 /**
29  Internal Type exposed to facilitate transition to Swift.
30  API Subject to change or removal without warning. Do not use.
31
32  @warning INTERNAL - DO NOT USE
33  */
34 - (void)webDialog:(FBSDKWebDialog *)webDialog didCompleteWithResults:(NSDictionary<NSString *, id> *)results;
35
36 /**
37  Internal Type exposed to facilitate transition to Swift.
38  API Subject to change or removal without warning. Do not use.
39
40  @warning INTERNAL - DO NOT USE
41  */
42 - (void)webDialog:(FBSDKWebDialog *)webDialog didFailWithError:(NSError *)error;
43
44 /**
45  Internal Type exposed to facilitate transition to Swift.
46  API Subject to change or removal without warning. Do not use.
47
48  @warning INTERNAL - DO NOT USE
49  */
50 - (void)webDialogDidCancel:(FBSDKWebDialog *)webDialog;
51
52 @end
53
54 NS_ASSUME_NONNULL_END
55
56 #endif