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

Unified Diff: src/ports/SkDebug_brew.cpp

Issue 15941025: Add SkData::NewFromFD. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Remove an indentation level. Created 7 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
« no previous file with comments | « src/core/SkData.cpp ('k') | src/ports/SkMemory_brew.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ports/SkDebug_brew.cpp
===================================================================
--- src/ports/SkDebug_brew.cpp (revision 9384)
+++ src/ports/SkDebug_brew.cpp (working copy)
@@ -1,28 +0,0 @@
-/* libs/corecg/SkDebug_brew.cpp
- *
- * Copyright 2009, The Android Open Source Project
- * Copyright 2009, Company 100, Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "SkTypes.h"
-
-#ifdef SK_BUILD_FOR_BREW
-
-static const size_t kBufferSize = 256;
-
-#include <AEEStdLib.h>
-#include <stdarg.h>
-
-void SkDebugf(const char format[], ...) {
- char buffer[kBufferSize + 1];
- va_list args;
- va_start(args, format);
- VSNPRINTF(buffer, kBufferSize, format, args);
- va_end(args);
- DBGPRINTF(buffer);
-}
-
-#endif SK_BUILD_FOR_BREW
« no previous file with comments | « src/core/SkData.cpp ('k') | src/ports/SkMemory_brew.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698