Title: [179201] trunk/Source/WebCore
- Revision
- 179201
- Author
- [email protected]
- Date
- 2015-01-27 12:16:31 -0800 (Tue, 27 Jan 2015)
Log Message
[Win] Unreviewed build fix.
Lack of include guards in WebVTTElement.h caused a build failure once we started including
this header file from more than one implementation file.
* html/track/WebVTTElement.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (179200 => 179201)
--- trunk/Source/WebCore/ChangeLog 2015-01-27 19:52:52 UTC (rev 179200)
+++ trunk/Source/WebCore/ChangeLog 2015-01-27 20:16:31 UTC (rev 179201)
@@ -1,3 +1,12 @@
+2015-01-27 Brent Fulgham <[email protected]>
+
+ [Win] Unreviewed build fix.
+
+ Lack of include guards in WebVTTElement.h caused a build failure once we started including
+ this header file from more than one implementation file.
+
+ * html/track/WebVTTElement.h:
+
2015-01-26 Sylvain Galineau <[email protected]>
CSSKeyframesRule::findRule() and deleteRule() should delete the last matching rule, not the first
Modified: trunk/Source/WebCore/html/track/WebVTTElement.h (179200 => 179201)
--- trunk/Source/WebCore/html/track/WebVTTElement.h 2015-01-27 19:52:52 UTC (rev 179200)
+++ trunk/Source/WebCore/html/track/WebVTTElement.h 2015-01-27 20:16:31 UTC (rev 179201)
@@ -23,6 +23,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#ifndef WebVTTElement_h
+#define WebVTTElement_h
+
#if ENABLE(VIDEO_TRACK)
#include "HTMLElement.h"
@@ -87,3 +90,5 @@
SPECIALIZE_TYPE_TRAITS_END()
#endif
+
+#endif // WebVTTElement_h
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes