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

Unified Diff: third_party/WebKit/Source/wtf/text/WTFString.h

Issue 2522243003: Revert of Out-of-line WTF::String's destructor. (Closed)
Patch Set: Created 4 years, 1 month 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 | third_party/WebKit/Source/wtf/text/WTFString.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/text/WTFString.h
diff --git a/third_party/WebKit/Source/wtf/text/WTFString.h b/third_party/WebKit/Source/wtf/text/WTFString.h
index e597710290c9fa1148db7aaeab702d5d8a67ca11..c2b55e4b312ec04c18ca580a3b9381824bf0a2ac 100644
--- a/third_party/WebKit/Source/wtf/text/WTFString.h
+++ b/third_party/WebKit/Source/wtf/text/WTFString.h
@@ -99,14 +99,6 @@
String(StringImpl* impl) : m_impl(impl) {}
String(PassRefPtr<StringImpl> impl) : m_impl(impl) {}
- String(const String&);
- String& operator=(const String&);
-
- String(String&&);
- String& operator=(String&&);
-
- ~String();
-
void swap(String& o) { m_impl.swap(o.m_impl); }
template <typename CharType>
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/text/WTFString.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698