#ifndef CONTENT_BROWSER_SANDBOX_SUPPORT_MAC_IMPL_H_
#define CONTENT_BROWSER_SANDBOX_SUPPORT_MAC_IMPL_H_
#include "content/common/sandbox_support_mac.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
namespace content {
class SandboxSupportMacImpl : public mojom::SandboxSupportMac {
public:
SandboxSupportMacImpl();
SandboxSupportMacImpl(const SandboxSupportMacImpl&) = delete;
SandboxSupportMacImpl& operator=(const SandboxSupportMacImpl&) = delete;
~SandboxSupportMacImpl() override;
void BindReceiver(mojo::PendingReceiver<mojom::SandboxSupportMac> receiver);
void GetSystemColors(GetSystemColorsCallback callback) override;
private:
mojo::ReceiverSet<mojom::SandboxSupportMac> receivers_;
};
}
#endif