From 6df4074a8f9ab6039c7cb8807b61b52599d14040 Mon Sep 17 00:00:00 2001
From: "jar@chromium.org"
 <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>
Date: Thu, 19 Mar 2009 22:24:50 +0000
Subject: Fix a bunch of tiny near-bugs and bugs that static analysis
 identified

r=mbelshe,brettw
Review URL: http://codereview.chromium.org/50014

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12166 0039d316-1c4b-4281-b951-d872f2087c98
---
 base/histogram.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'base/histogram.h')

diff --git a/base/histogram.h b/base/histogram.h
index 7ec556f..7c4b3b8 100644
--- a/base/histogram.h
+++ b/base/histogram.h
@@ -475,10 +475,10 @@ class ThreadSafeHistogram : public Histogram {
   // Provide locked versions to get precise counts.
   virtual void Accumulate(Sample value, Count count, size_t index);
 
-  virtual void SnapshotSample(SampleSet* sample);
+  virtual void SnapshotSample(SampleSet* sample) const;
 
  private:
-  Lock lock_;
+  mutable Lock lock_;
 
   DISALLOW_COPY_AND_ASSIGN(ThreadSafeHistogram);
 };
-- 
cgit v1.1