Title: [164196] trunk/Source/WebCore
Revision
164196
Author
m...@apple.com
Date
2014-02-16 14:43:04 -0800 (Sun, 16 Feb 2014)

Log Message

Speculative iOS build fix.

* dom/Document.cpp:
(WebCore::Document::Document):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164195 => 164196)


--- trunk/Source/WebCore/ChangeLog	2014-02-16 22:18:13 UTC (rev 164195)
+++ trunk/Source/WebCore/ChangeLog	2014-02-16 22:43:04 UTC (rev 164196)
@@ -1,3 +1,10 @@
+2014-02-16  Dan Bernstein  <m...@apple.com>
+
+        Speculative iOS build fix.
+
+        * dom/Document.cpp:
+        (WebCore::Document::Document):
+
 2014-02-15  Antti Koivisto  <an...@apple.com>
 
         Move document life time management from TreeScope to Document

Modified: trunk/Source/WebCore/dom/Document.cpp (164195 => 164196)


--- trunk/Source/WebCore/dom/Document.cpp	2014-02-16 22:18:13 UTC (rev 164195)
+++ trunk/Source/WebCore/dom/Document.cpp	2014-02-16 22:43:04 UTC (rev 164196)
@@ -395,12 +395,12 @@
 Document::Document(Frame* frame, const URL& url, unsigned documentClasses, unsigned constructionFlags)
     : ContainerNode(this, CreateDocument)
     , TreeScope(*this)
-    , m_selfOnlyRefCount(1)
 #if ENABLE(TOUCH_EVENTS) && PLATFORM(IOS)
     , m_handlingTouchEvent(false)
     , m_touchEventRegionsDirty(false)
     , m_touchEventsChangedTimer(this, &Document::touchEventsChangedTimerFired)
 #endif
+    , m_selfOnlyRefCount(1)
     , m_styleResolverThrowawayTimer(this, &Document::styleResolverThrowawayTimerFired, timeBeforeThrowingAwayStyleResolverAfterLastUseInSeconds)
     , m_didCalculateStyleResolver(false)
     , m_hasNodesWithPlaceholderStyle(false)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to