Title: [102492] trunk/Source/WebCore
- Revision
- 102492
- Author
- [email protected]
- Date
- 2011-12-09 17:01:02 -0800 (Fri, 09 Dec 2011)
Log Message
Small style fix on DragDataBlackBerry.cpp
https://bugs.webkit.org/show_bug.cgi?id=74171
Patch by Mary Wu <[email protected]> on 2011-12-09
Reviewed by Rob Buis.
Style fix, no function impact, no new tests.
* platform/blackberry/DragDataBlackBerry.cpp:
(WebCore::DragData::containsURL):
(WebCore::DragData::asFilenames):
(WebCore::DragData::asURL):
(WebCore::DragData::asFragment):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (102491 => 102492)
--- trunk/Source/WebCore/ChangeLog 2011-12-10 00:47:29 UTC (rev 102491)
+++ trunk/Source/WebCore/ChangeLog 2011-12-10 01:01:02 UTC (rev 102492)
@@ -1,3 +1,18 @@
+2011-12-09 Mary Wu <[email protected]>
+
+ Small style fix on DragDataBlackBerry.cpp
+ https://bugs.webkit.org/show_bug.cgi?id=74171
+
+ Reviewed by Rob Buis.
+
+ Style fix, no function impact, no new tests.
+
+ * platform/blackberry/DragDataBlackBerry.cpp:
+ (WebCore::DragData::containsURL):
+ (WebCore::DragData::asFilenames):
+ (WebCore::DragData::asURL):
+ (WebCore::DragData::asFragment):
+
2011-12-09 Tony Chang <[email protected]>
add css parsing for flex-flow: wrap and wrap-reverse
Modified: trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp (102491 => 102492)
--- trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp 2011-12-10 00:47:29 UTC (rev 102491)
+++ trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp 2011-12-10 01:01:02 UTC (rev 102492)
@@ -58,15 +58,14 @@
return false;
}
-bool DragData::containsURL(Frame*, FilenameConversionPolicy filenamePolicy) const
+bool DragData::containsURL(Frame*, FilenameConversionPolicy) const
{
notImplemented();
return false;
}
-void DragData::asFilenames(WTF::Vector<String, 0u>& result) const
+void DragData::asFilenames(Vector<String>&) const
{
- // FIXME: remove explicit 0 size in result template once this is implemented
notImplemented();
}
@@ -82,14 +81,13 @@
return String();
}
-String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
+String DragData::asURL(Frame*, FilenameConversionPolicy, String*) const
{
notImplemented();
return String();
}
-WTF::PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range> context,
- bool allowPlainText, bool& chosePlainText) const
+PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
{
notImplemented();
return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes