#ifndef CONTENT_BROWSER_EYE_DROPPER_CHOOSER_IMPL_H_
#define CONTENT_BROWSER_EYE_DROPPER_CHOOSER_IMPL_H_
#include <memory>
#include "content/public/browser/document_service.h"
#include "content/public/browser/eye_dropper_listener.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "third_party/blink/public/mojom/choosers/color_chooser.mojom.h"
namespace content {
class EyeDropper;
class EyeDropperListener;
class EyeDropperChooserImpl final
: public DocumentService<blink::mojom::EyeDropperChooser>,
public EyeDropperListener { … };
}
#endif