Title: [150152] trunk/Source/WebCore
- Revision
- 150152
- Author
- [email protected]
- Date
- 2013-05-15 15:01:35 -0700 (Wed, 15 May 2013)
Log Message
List platforms that still use the legacy clipboard instead of just saying "not Mac"
https://bugs.webkit.org/show_bug.cgi?id=116177
Reviewed by Andreas Kling.
* dom/Clipboard.h: Replaced the "!MAC || IOS" with a list of platforms still on the
legacy model.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (150151 => 150152)
--- trunk/Source/WebCore/ChangeLog 2013-05-15 21:53:58 UTC (rev 150151)
+++ trunk/Source/WebCore/ChangeLog 2013-05-15 22:01:35 UTC (rev 150152)
@@ -1,3 +1,13 @@
+2013-05-15 Darin Adler <[email protected]>
+
+ List platforms that still use the legacy clipboard instead of just saying "not Mac"
+ https://bugs.webkit.org/show_bug.cgi?id=116177
+
+ Reviewed by Andreas Kling.
+
+ * dom/Clipboard.h: Replaced the "!MAC || IOS" with a list of platforms still on the
+ legacy model.
+
2013-05-15 Yongjun Zhang <[email protected]>
We should clear mainResource in DocumentLoader::cancelMainResourceLoad.
Modified: trunk/Source/WebCore/dom/Clipboard.h (150151 => 150152)
--- trunk/Source/WebCore/dom/Clipboard.h 2013-05-15 21:53:58 UTC (rev 150151)
+++ trunk/Source/WebCore/dom/Clipboard.h 2013-05-15 22:01:35 UTC (rev 150152)
@@ -34,7 +34,7 @@
// This DOM object now works by calling through to classes in the platform layer.
// Specifically, the class currently named Pasteboard. The legacy style instead
// uses this as an abstract base class.
-#define WTF_USE_LEGACY_STYLE_ABSTRACT_CLIPBOARD_CLASS (!PLATFORM(MAC) || PLATFORM(IOS))
+#define WTF_USE_LEGACY_STYLE_ABSTRACT_CLIPBOARD_CLASS (PLATFORM(BLACKBERRY) || PLATFORM(EFL) || PLATFORM(GTK) || PLATFORM(IOS) || PLATFORM(QT) || PLATFORM(WIN))
#if USE(LEGACY_STYLE_ABSTRACT_CLIPBOARD_CLASS)
#define LEGACY_VIRTUAL virtual
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes