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

Unified Diff: Source/WTF/wtf/Assertions.cpp

Issue 13687007: Remove PLATFORM(BLACKBERRY) support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Source/WTF/wtf/FeatureDefines.h » ('j') | Source/WebCore/loader/cache/CachedResource.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WTF/wtf/Assertions.cpp
diff --git a/Source/WTF/wtf/Assertions.cpp b/Source/WTF/wtf/Assertions.cpp
index ad8ce86b85d6b8494b6ce0a80f5594f2467f008e..f496b1e5c0f409bdf1905e3734aad139ea766522 100644
--- a/Source/WTF/wtf/Assertions.cpp
+++ b/Source/WTF/wtf/Assertions.cpp
@@ -71,10 +71,6 @@
#include "android/log.h"
#endif
-#if PLATFORM(BLACKBERRY)
-#include <BlackBerryPlatformLog.h>
-#endif
-
extern "C" {
WTF_ATTRIBUTE_PRINTF(1, 0)
@@ -117,8 +113,6 @@ static void vprintf_stderr_common(const char* format, va_list args)
// Fall through to write to stderr in the same manner as other platforms.
-#elif PLATFORM(BLACKBERRY)
- BBLOGV(BlackBerry::Platform::LogLevelCritical, format, args);
#elif OS(ANDROID)
__android_log_vprint(ANDROID_LOG_WARN, "WebKit", format, args);
#elif HAVE(ISDEBUGGERPRESENT)
@@ -155,9 +149,7 @@ static void vprintf_stderr_common(const char* format, va_list args)
} while (size > 1024);
}
#endif
-#if !PLATFORM(BLACKBERRY)
vfprintf(stderr, format, args);
-#endif
}
#if COMPILER(CLANG) || (COMPILER(GCC) && GCC_VERSION_AT_LEAST(4, 6, 0))
« no previous file with comments | « no previous file | Source/WTF/wtf/FeatureDefines.h » ('j') | Source/WebCore/loader/cache/CachedResource.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698