#ifndef COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLER_JAVASCRIPT_SERVICE_IMPL_H_
#define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DISTILLER_JAVASCRIPT_SERVICE_IMPL_H_
#include "base/memory/weak_ptr.h"
#include "components/dom_distiller/content/common/mojom/distiller_javascript_service.mojom.h"
#include "components/dom_distiller/core/mojom/distilled_page_prefs.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
namespace dom_distiller {
class DomDistillerService;
class DistillerJavaScriptServiceImpl
: public mojom::DistillerJavaScriptService { … };
void CreateDistillerJavaScriptService(
base::WeakPtr<DomDistillerService> distiller_service_weak_ptr,
mojo::PendingReceiver<mojom::DistillerJavaScriptService> receiver);
}
#endif