Title: [97837] trunk/Source/WebCore
Revision
97837
Author
commit-qu...@webkit.org
Date
2011-10-19 00:18:01 -0700 (Wed, 19 Oct 2011)

Log Message

[EFL] Added missing dummy platformDescription function
https://bugs.webkit.org/show_bug.cgi?id=70310

Patch by Tomasz Morawski <t.moraw...@samsung.com> on 2011-10-19
Reviewed by Ryosuke Niwa.

Added dummy platformDescription function needed to compile WK2.

* platform/efl/ContextMenuEfl.cpp:
(WebCore::ContextMenu::platformDescription):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (97836 => 97837)


--- trunk/Source/WebCore/ChangeLog	2011-10-19 06:57:36 UTC (rev 97836)
+++ trunk/Source/WebCore/ChangeLog	2011-10-19 07:18:01 UTC (rev 97837)
@@ -1,3 +1,15 @@
+2011-10-19  Tomasz Morawski  <t.moraw...@samsung.com>
+
+        [EFL] Added missing dummy platformDescription function
+        https://bugs.webkit.org/show_bug.cgi?id=70310
+
+        Reviewed by Ryosuke Niwa.
+
+        Added dummy platformDescription function needed to compile WK2.
+
+        * platform/efl/ContextMenuEfl.cpp:
+        (WebCore::ContextMenu::platformDescription):
+
 2011-10-18  Kentaro Hara  <hara...@chromium.org>
 
         Generate a SharedWorker constructor of V8 using [Constructor] IDL

Modified: trunk/Source/WebCore/platform/efl/ContextMenuEfl.cpp (97836 => 97837)


--- trunk/Source/WebCore/platform/efl/ContextMenuEfl.cpp	2011-10-19 06:57:36 UTC (rev 97836)
+++ trunk/Source/WebCore/platform/efl/ContextMenuEfl.cpp	2011-10-19 07:18:01 UTC (rev 97837)
@@ -23,6 +23,7 @@
 #include "ContextMenu.h"
 
 #include "NotImplemented.h"
+#include "PlatformMenuDescription.h"
 
 namespace WebCore {
 
@@ -52,6 +53,12 @@
 {
     notImplemented();
 }
+
+PlatformMenuDescription ContextMenu::platformDescription() const
+{
+    notImplemented();
+    return 0;
+}
 #endif
 
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to