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

Unified Diff: chrome/browser/metrics_log.cc

Issue 14462: Port few files in browser/ to Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 12 years 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
« no previous file with comments | « chrome/browser/browser.scons ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics_log.cc
===================================================================
--- chrome/browser/metrics_log.cc (revision 7051)
+++ chrome/browser/metrics_log.cc (working copy)
@@ -41,12 +41,12 @@
MetricsLog::MetricsLog(const std::string& client_id, int session_id)
: start_time_(Time::Now()),
- num_events_(0),
+ client_id_(client_id),
+ session_id_(IntToString(session_id)),
locked_(false),
buffer_(NULL),
writer_(NULL),
- client_id_(client_id),
- session_id_(IntToString(session_id)) {
+ num_events_(0) {
buffer_ = xmlBufferCreate();
DCHECK(buffer_);
@@ -110,7 +110,7 @@
unsigned char reverse[8]; // UMA only uses first 8 chars of hash.
DCHECK(arraysize(digest.a) >= arraysize(reverse));
- for (int i = 0; i < arraysize(reverse); ++i)
+ for (size_t i = 0; i < arraysize(reverse); ++i)
reverse[i] = digest.a[arraysize(reverse) - i - 1];
LOG(INFO) << "Metrics: Hash numeric [" << value << "]=["
<< *reinterpret_cast<const uint64*>(&reverse[0]) << "]";
« no previous file with comments | « chrome/browser/browser.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698