diff options
author | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 19:38:25 +0000 |
---|---|---|
committer | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 19:38:25 +0000 |
commit | f0d930ae5aa3ce03c124585a0feb303e1da52541 (patch) | |
tree | a4052994a274d2eaa10cffeecfc7616d1961e17c /base/histogram.h | |
parent | 82e116f2fc854c891b0125c675f5eb3c131e7836 (diff) | |
download | chromium_src-f0d930ae5aa3ce03c124585a0feb303e1da52541.zip chromium_src-f0d930ae5aa3ce03c124585a0feb303e1da52541.tar.gz chromium_src-f0d930ae5aa3ce03c124585a0feb303e1da52541.tar.bz2 |
Fix a couple "extra qualification" compile errors in method declarations, and move related non-Win32-specific files to common build target.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@822 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/histogram.h')
-rw-r--r-- | base/histogram.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/base/histogram.h b/base/histogram.h index 8b5743f..5714bd7 100644 --- a/base/histogram.h +++ b/base/histogram.h @@ -366,8 +366,7 @@ class LinearHistogram : public Histogram { virtual void InitializeBucketRange(); // Find bucket to increment for sample value. virtual size_t BucketIndex(Sample value) const; - virtual double LinearHistogram::GetBucketSize(Count current, - size_t i) const; + virtual double GetBucketSize(Count current, size_t i) const; // If we have a description for a bucket, then return that. Otherwise // let parent class provide a (numeric) description. @@ -466,4 +465,3 @@ class StatisticsRecorder { }; #endif // BASE_HISTOGRAM_H__ - |