Index: net/disk_cache/blockfile/bitmap.h |
diff --git a/net/disk_cache/blockfile/bitmap.h b/net/disk_cache/blockfile/bitmap.h |
index dc05157f7a4400a8ea1c3268764d6fb309864d86..96141af1e0f4ec0496e34b50b4304bb4753dca21 100644 |
--- a/net/disk_cache/blockfile/bitmap.h |
+++ b/net/disk_cache/blockfile/bitmap.h |
@@ -95,7 +95,7 @@ class NET_EXPORT_PRIVATE Bitmap { |
// Finds the first offset >= *|index| that has its bit set. |
// See FindNextBit() for more info. |
- bool FindNextSetBit(int *index) const { |
+ bool FindNextSetBit(int* index) const { |
return FindNextSetBitBeforeLimit(index, num_bits_); |
} |
@@ -123,10 +123,10 @@ class NET_EXPORT_PRIVATE Bitmap { |
// stored in the same word, and len < kIntBits. |
void SetWordBits(int start, int len, bool value); |
- uint32* map_; // The bitmap. |
- int num_bits_; // The upper bound of the bitmap. |
- int array_size_; // The physical size (in uint32s) of the bitmap. |
- bool alloc_; // Whether or not we allocated the memory. |
+ uint32* map_; // The bitmap. |
+ int num_bits_; // The upper bound of the bitmap. |
+ int array_size_; // The physical size (in uint32s) of the bitmap. |
+ bool alloc_; // Whether or not we allocated the memory. |
DISALLOW_COPY_AND_ASSIGN(Bitmap); |
}; |