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

Side by Side Diff: components/dom_distiller/core/feedback_reporter.h

Issue 197473006: Add FeedbackReporter for reporting distillation quality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed disableUI again and comment Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « components/dom_distiller.gypi ('k') | components/dom_distiller/core/feedback_reporter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_FEEDBACK_REPORTER_H_
6 #define COMPONENTS_DOM_DISTILLER_CORE_FEEDBACK_REPORTER_H_
7
8 #include "base/macros.h"
9
10 namespace dom_distiller {
11
12 // FeedbackReporter handles reporting distillation quality.
13 class FeedbackReporter {
14 public:
15 FeedbackReporter();
16 virtual ~FeedbackReporter();
17
18 // Reports the quality of the distillation. |good| represents whether the
19 // perceived quality of the distillation of a web page was good.
20 static void ReportQuality(bool good);
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(FeedbackReporter);
24 };
25
26 } // namespace dom_distiller
27
28 #endif // COMPONENTS_DOM_DISTILLER_CORE_FEEDBACK_REPORTER_H_
OLDNEW
« no previous file with comments | « components/dom_distiller.gypi ('k') | components/dom_distiller/core/feedback_reporter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698