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

Unified Diff: third_party/WebKit/Source/wtf/PartitionAllocator.cpp

Issue 1436153002: Apply clang-format with Chromium-style without column limit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « third_party/WebKit/Source/wtf/PartitionAllocator.h ('k') | third_party/WebKit/Source/wtf/Partitions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/PartitionAllocator.cpp
diff --git a/third_party/WebKit/Source/wtf/PartitionAllocator.cpp b/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
index 2befd349f15c99fbc1ea1b4874e880e63f195cc2..a762993b5b9c12c54db361280e2c027763c82dda 100644
--- a/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
+++ b/third_party/WebKit/Source/wtf/PartitionAllocator.cpp
@@ -36,19 +36,16 @@
namespace WTF {
-void* PartitionAllocator::allocateBacking(size_t size)
-{
- return Partitions::bufferMalloc(size);
+void* PartitionAllocator::allocateBacking(size_t size) {
+ return Partitions::bufferMalloc(size);
}
-void PartitionAllocator::freeVectorBacking(void* address)
-{
- Partitions::bufferFree(address);
+void PartitionAllocator::freeVectorBacking(void* address) {
+ Partitions::bufferFree(address);
}
-void PartitionAllocator::freeHashTableBacking(void* address)
-{
- Partitions::bufferFree(address);
+void PartitionAllocator::freeHashTableBacking(void* address) {
+ Partitions::bufferFree(address);
}
-} // namespace WTF
+} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/PartitionAllocator.h ('k') | third_party/WebKit/Source/wtf/Partitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698