Title: [154559] trunk/Source/WebCore
Revision
154559
Author
[email protected]
Date
2013-08-24 20:08:24 -0700 (Sat, 24 Aug 2013)

Log Message

BUILD FIX: Include HTMLPlugInImageElement.h for ENABLE(PLUGIN_PROXY_FOR_VIDEO)

Fixes the following build failure for iOS:

    In file included from Source/WebCore/accessibility/AccessibilityAllInOne.cpp:28:
    In file included from Source/WebCore/accessibility/AXObjectCache.cpp:42:
    In file included from Source/WebCore/accessibility/AccessibilityMediaControls.h:36:
    In file included from Source/WebCore/html/shadow/MediaControlElements.h:34:
    In file included from Source/WebCore/html/shadow/MediaControlElementTypes.h:37:
    Source/WebCore/html/HTMLMediaElement.h:324:23: error: unknown type name 'PluginCreationOption'
        void updateWidget(PluginCreationOption);
                          ^

* html/HTMLMediaElement.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154558 => 154559)


--- trunk/Source/WebCore/ChangeLog	2013-08-25 02:28:06 UTC (rev 154558)
+++ trunk/Source/WebCore/ChangeLog	2013-08-25 03:08:24 UTC (rev 154559)
@@ -1,3 +1,20 @@
+2013-08-24  David Kilzer  <[email protected]>
+
+        BUILD FIX: Include HTMLPlugInImageElement.h for ENABLE(PLUGIN_PROXY_FOR_VIDEO)
+
+        Fixes the following build failure for iOS:
+
+            In file included from Source/WebCore/accessibility/AccessibilityAllInOne.cpp:28:
+            In file included from Source/WebCore/accessibility/AXObjectCache.cpp:42:
+            In file included from Source/WebCore/accessibility/AccessibilityMediaControls.h:36:
+            In file included from Source/WebCore/html/shadow/MediaControlElements.h:34:
+            In file included from Source/WebCore/html/shadow/MediaControlElementTypes.h:37:
+            Source/WebCore/html/HTMLMediaElement.h:324:23: error: unknown type name 'PluginCreationOption'
+                void updateWidget(PluginCreationOption);
+                                  ^
+
+        * html/HTMLMediaElement.h:
+
 2013-08-24  Darin Adler  <[email protected]>
 
         Frame::tree should return a reference instead of a pointer

Modified: trunk/Source/WebCore/html/HTMLMediaElement.h (154558 => 154559)


--- trunk/Source/WebCore/html/HTMLMediaElement.h	2013-08-25 02:28:06 UTC (rev 154558)
+++ trunk/Source/WebCore/html/HTMLMediaElement.h	2013-08-25 03:08:24 UTC (rev 154559)
@@ -35,6 +35,7 @@
 #include "MediaPlayer.h"
 
 #if ENABLE(PLUGIN_PROXY_FOR_VIDEO)
+#include "HTMLPlugInImageElement.h"
 #include "MediaPlayerProxy.h"
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to