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

Unified Diff: net/disk_cache/blockfile/bitmap.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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: 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);
};

Powered by Google App Engine
This is Rietveld 408576698