Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Unified Diff: components/dom_distiller/content/browser/external_feedback_reporter.h

Issue 2768093004: Remove unused feedback class in dom distiller component (Closed)
Patch Set: address comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/dom_distiller/content/browser/external_feedback_reporter.h
diff --git a/components/dom_distiller/content/browser/external_feedback_reporter.h b/components/dom_distiller/content/browser/external_feedback_reporter.h
deleted file mode 100644
index 90586c3600fca4b6b5982e17a16c815105310983..0000000000000000000000000000000000000000
--- a/components/dom_distiller/content/browser/external_feedback_reporter.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_EXTERNAL_FEEDBACK_REPORTER_H_
-#define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_EXTERNAL_FEEDBACK_REPORTER_H_
-
-#include "base/macros.h"
-#include "content/public/browser/web_contents.h"
-#include "url/gurl.h"
-
-namespace dom_distiller {
-
-// ExternalFeedbackReporter handles reporting distillation quality through an
-// external source.
-class ExternalFeedbackReporter {
- public:
- ExternalFeedbackReporter() {}
- virtual ~ExternalFeedbackReporter() {}
-
- // Start an external form to record user feedback.
- virtual void ReportExternalFeedback(content::WebContents* web_contents,
- const GURL& url,
- const bool good) = 0;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(ExternalFeedbackReporter);
-};
-
-} // namespace dom_distiller
-
-#endif // COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_EXTERNAL_FEEDBACK_REPORTER_H_

Powered by Google App Engine
This is Rietveld 408576698