FBSDKWebDialogDelegate.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  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. #if !TARGET_OS_TV
  9. #import <Foundation/Foundation.h>
  10. @class FBSDKWebDialog;
  11. NS_ASSUME_NONNULL_BEGIN
  12. /**
  13. Internal Type exposed to facilitate transition to Swift.
  14. API Subject to change or removal without warning. Do not use.
  15. @warning INTERNAL - DO NOT USE
  16. */
  17. NS_SWIFT_NAME(WebDialogDelegate)
  18. @protocol FBSDKWebDialogDelegate
  19. /**
  20. Internal Type exposed to facilitate transition to Swift.
  21. API Subject to change or removal without warning. Do not use.
  22. @warning INTERNAL - DO NOT USE
  23. */
  24. - (void)webDialog:(FBSDKWebDialog *)webDialog didCompleteWithResults:(NSDictionary<NSString *, id> *)results;
  25. /**
  26. Internal Type exposed to facilitate transition to Swift.
  27. API Subject to change or removal without warning. Do not use.
  28. @warning INTERNAL - DO NOT USE
  29. */
  30. - (void)webDialog:(FBSDKWebDialog *)webDialog didFailWithError:(NSError *)error;
  31. /**
  32. Internal Type exposed to facilitate transition to Swift.
  33. API Subject to change or removal without warning. Do not use.
  34. @warning INTERNAL - DO NOT USE
  35. */
  36. - (void)webDialogDidCancel:(FBSDKWebDialog *)webDialog;
  37. @end
  38. NS_ASSUME_NONNULL_END
  39. #endif