#ifndef CONTENT_APP_SHIM_REMOTE_COCOA_SHARING_SERVICE_PICKER_H_
#define CONTENT_APP_SHIM_REMOTE_COCOA_SHARING_SERVICE_PICKER_H_
#include <AppKit/AppKit.h>
#include "content/common/render_widget_host_ns_view.mojom.h"
@interface SharingServicePicker
: NSObject <NSSharingServiceDelegate, NSSharingServicePickerDelegate>
- (instancetype)initWithItems:(NSArray*)items
callback:(remote_cocoa::mojom::RenderWidgetHostNSView::
ShowSharingServicePickerCallback)cb
view:(NSView*)view;
- (void)show;
@end
#endif