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

Unified Diff: Source/WebCore/platform/graphics/skia/PathSkia.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
Index: Source/WebCore/platform/graphics/skia/PathSkia.cpp
diff --git a/Source/WebCore/platform/graphics/skia/PathSkia.cpp b/Source/WebCore/platform/graphics/skia/PathSkia.cpp
index 47587525d1bbdf990c93c614b54a5b801b95570f..a4c90d239904e3a8e44be741153ec4d0f38e158b 100644
--- a/Source/WebCore/platform/graphics/skia/PathSkia.cpp
+++ b/Source/WebCore/platform/graphics/skia/PathSkia.cpp
@@ -53,13 +53,6 @@ Path::Path(const Path& other)
m_path = other.m_path ? new SkPath(*other.m_path) : 0;
}
-#if PLATFORM(BLACKBERRY)
-Path::Path(const SkPath& path)
-{
- m_path = new SkPath(path);
-}
-#endif
-
Path::~Path()
{
if (m_path)

Powered by Google App Engine
This is Rietveld 408576698