| Index: components/dom_distiller/content/browser/distiller_javascript_service_impl.cc
|
| diff --git a/components/dom_distiller/content/browser/distiller_javascript_service_impl.cc b/components/dom_distiller/content/browser/distiller_javascript_service_impl.cc
|
| index bcd09f2561a1f8af46d5b4b29f9ceecbc684ebab..508e0773f8aebb8f3609bf995c6572b75fb9e46f 100644
|
| --- a/components/dom_distiller/content/browser/distiller_javascript_service_impl.cc
|
| +++ b/components/dom_distiller/content/browser/distiller_javascript_service_impl.cc
|
| @@ -22,24 +22,6 @@ DistillerJavaScriptServiceImpl::DistillerJavaScriptServiceImpl(
|
|
|
| DistillerJavaScriptServiceImpl::~DistillerJavaScriptServiceImpl() {}
|
|
|
| -void DistillerJavaScriptServiceImpl::HandleDistillerFeedbackCall(
|
| - bool good) {
|
| - FeedbackReporter::ReportQuality(good);
|
| - if (good) {
|
| - return;
|
| - }
|
| -
|
| - // If feedback is bad try to start up external feedback.
|
| - if (!distiller_ui_handle_) {
|
| - return;
|
| - }
|
| - content::WebContents* contents =
|
| - content::WebContents::FromRenderFrameHost(render_frame_host_);
|
| - distiller_ui_handle_->ReportExternalFeedback(
|
| - contents, contents->GetURL(), false);
|
| - return;
|
| -}
|
| -
|
| void DistillerJavaScriptServiceImpl::HandleDistillerClosePanelCall(
|
| bool animate) {
|
| content::RecordAction(base::UserMetricsAction("DomDistiller_ViewOriginal"));
|
|
|