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

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

Issue 13529026: Removing a bunch of unused platform code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix whitespace and compiler error on Mac. 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 | « Source/WTF/wtf/ThreadingPthreads.cpp ('k') | Source/WTF/wtf/text/StringImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..512a90aae692be1c7cb56c0c8873450d1b57c94d 100644
--- a/Source/WTF/wtf/text/AtomicString.h
+++ b/Source/WTF/wtf/text/AtomicString.h
@@ -152,15 +152,6 @@ public:
AtomicString(NSString* s) : m_string(add((CFStringRef)s)) { }
operator NSString*() const { return m_string; }
#endif
-#if PLATFORM(QT)
- 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.
static AtomicString fromUTF8(const char*, size_t);
« no previous file with comments | « Source/WTF/wtf/ThreadingPthreads.cpp ('k') | Source/WTF/wtf/text/StringImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698