style nit for myself retroactively: throwOnFailure -> throw_on_failure

BUG=
R=reed@google.com

Author: mtklein@google.com

Review URL: https://codereview.chromium.org/26298002

git-svn-id: http://skia.googlecode.com/svn/trunk/src@11635 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/ports/SkMemory_malloc.cpp b/ports/SkMemory_malloc.cpp
index 6db65a8..3a5608e 100644
--- a/ports/SkMemory_malloc.cpp
+++ b/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_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_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_throw(size_t size) {
-    return throwOnFailure(size, sk_calloc(size));
+    return throw_on_failure(size, sk_calloc(size));
 }