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

Unified Diff: src/ports/SkMemory_malloc.cpp

Issue 26298002: style nit for myself retroactively: throwOnFailure -> throw_on_failure (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ports/SkMemory_malloc.cpp
diff --git a/src/ports/SkMemory_malloc.cpp b/src/ports/SkMemory_malloc.cpp
index 6db65a8524524831aaf3402ea9e49cec4e75051c..3a5608ef15b40e7514276b5dfc94e8fa8fb7a497 100644
--- a/src/ports/SkMemory_malloc.cpp
+++ b/src/ports/SkMemory_malloc.cpp
@@ -9,7 +9,7 @@
#include <stdio.h>
#include <stdlib.h>
-static inline void* throwOnFailure(size_t size, void* p) {
+static inline void* throw_on_failure(size_t size, void* p) {
if (size > 0 && p == NULL) {
// If we've got a NULL here, the only reason we should have failed is running out of RAM.
sk_out_of_memory();
@@ -32,7 +32,7 @@ void* sk_malloc_throw(size_t size) {
}
void* sk_realloc_throw(void* addr, size_t size) {
- return throwOnFailure(size, realloc(addr, size));
+ return throw_on_failure(size, realloc(addr, size));
}
void sk_free(void* p) {
@@ -44,7 +44,7 @@ void sk_free(void* p) {
void* sk_malloc_flags(size_t size, unsigned flags) {
void* p = malloc(size);
if (flags & SK_MALLOC_THROW) {
- return throwOnFailure(size, p);
+ return throw_on_failure(size, p);
} else {
return p;
}
@@ -55,5 +55,5 @@ void* sk_calloc(size_t size) {
}
void* sk_calloc_throw(size_t size) {
- return throwOnFailure(size, sk_calloc(size));
+ return throw_on_failure(size, sk_calloc(size));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698