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

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

Issue 1178683009: Change histogram.h includes to histogram_macros.h in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/dom_distiller/core/feedback_reporter.h" 5 #include "components/dom_distiller/core/feedback_reporter.h"
6 6
7 #include "base/metrics/histogram.h" 7 #include "base/metrics/histogram_macros.h"
8 8
9 namespace dom_distiller { 9 namespace dom_distiller {
10 10
11 FeedbackReporter::FeedbackReporter() {} 11 FeedbackReporter::FeedbackReporter() {}
12 12
13 FeedbackReporter::~FeedbackReporter() {} 13 FeedbackReporter::~FeedbackReporter() {}
14 14
15 // static 15 // static
16 void FeedbackReporter::ReportQuality(bool good) { 16 void FeedbackReporter::ReportQuality(bool good) {
17 UMA_HISTOGRAM_BOOLEAN("DomDistiller.DistillationQuality", good); 17 UMA_HISTOGRAM_BOOLEAN("DomDistiller.DistillationQuality", good);
18 } 18 }
19 19
20 } // namespace dom_distiller 20 } // namespace dom_distiller
OLDNEW
« no previous file with comments | « components/dom_distiller/core/distiller_page.cc ('k') | components/dom_distiller/core/viewer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698