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

Unified Diff: chrome/browser/ui/webui/metrics_handler.cc

Issue 9254023: [NTP4] Track the position of each app that's launched. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: key board shortcuts fix, misinterpretation of my own class, :/ Created 8 years, 11 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: chrome/browser/ui/webui/metrics_handler.cc
diff --git a/chrome/browser/ui/webui/metrics_handler.cc b/chrome/browser/ui/webui/metrics_handler.cc
index 9115ba4d7c22fb7652e7e59c20bb5a92a373333f..d66371c3c318bbf57d25c828c914bd74d88baf53 100644
--- a/chrome/browser/ui/webui/metrics_handler.cc
+++ b/chrome/browser/ui/webui/metrics_handler.cc
@@ -64,7 +64,7 @@ void MetricsHandler::HandleRecordInHistogram(const ListValue* args) {
}
int bucket_count = int_boundary_value;
- while (bucket_count >= 100) {
+ while (bucket_count > 100) {
bucket_count /= 10;
}
« chrome/browser/resources/ntp4/apps_page.js ('K') | « chrome/browser/resources/ntp4/tile_page.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698