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

Unified Diff: Source/WTF/wtf/text/AtomicString.h

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/WTF/wtf/text/AtomicString.h
diff --git a/Source/WTF/wtf/text/AtomicString.h b/Source/WTF/wtf/text/AtomicString.h
index 265719f294307e6293f095cb8e9a681faa3d6523..21bd7a2496dacb19d01836d536a8584682371e0a 100644
--- a/Source/WTF/wtf/text/AtomicString.h
+++ b/Source/WTF/wtf/text/AtomicString.h
@@ -156,10 +156,6 @@ public:
AtomicString(const QString& s) : m_string(add(String(s).impl())) { }
operator QString() const { return m_string; }
#endif
-#if PLATFORM(BLACKBERRY)
- AtomicString(const BlackBerry::Platform::String& s) : m_string(add(String(s).impl())) { }
- operator BlackBerry::Platform::String() const { return m_string; }
-#endif
// AtomicString::fromUTF8 will return a null string if
// the input data contains invalid UTF-8 sequences.

Powered by Google App Engine
This is Rietveld 408576698