1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/dom_distiller/core/feedback_reporter.h"
7 #include "base/metrics/histogram.h"
9 namespace dom_distiller
{
11 FeedbackReporter::FeedbackReporter() {}
13 FeedbackReporter::~FeedbackReporter() {}
16 void FeedbackReporter::ReportQuality(bool good
) {
17 UMA_HISTOGRAM_BOOLEAN("DomDistiller.DistillationQuality", good
);
20 } // namespace dom_distiller