Title: [178600] trunk/Source/WebCore
Revision
178600
Author
[email protected]
Date
2015-01-16 13:42:50 -0800 (Fri, 16 Jan 2015)

Log Message

Remove assertion that Page::m_editorClient is non-null.

Unreviewed debug build fix. (It's a reference, it won't be null.)

* page/Page.cpp:
(WebCore::Page::Page):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (178599 => 178600)


--- trunk/Source/WebCore/ChangeLog	2015-01-16 21:40:23 UTC (rev 178599)
+++ trunk/Source/WebCore/ChangeLog	2015-01-16 21:42:50 UTC (rev 178600)
@@ -1,5 +1,14 @@
 2015-01-16  Andreas Kling  <[email protected]>
 
+        Remove assertion that Page::m_editorClient is non-null.
+
+        Unreviewed debug build fix. (It's a reference, it won't be null.)
+
+        * page/Page.cpp:
+        (WebCore::Page::Page):
+
+2015-01-16  Andreas Kling  <[email protected]>
+
         Page::editorClient() should return a reference.
         <https://webkit.org/b/140552>
 

Modified: trunk/Source/WebCore/page/Page.cpp (178599 => 178600)


--- trunk/Source/WebCore/page/Page.cpp	2015-01-16 21:40:23 UTC (rev 178599)
+++ trunk/Source/WebCore/page/Page.cpp	2015-01-16 21:42:50 UTC (rev 178600)
@@ -212,8 +212,6 @@
     , m_isClosing(false)
     , m_isPlayingAudio(false)
 {
-    ASSERT(m_editorClient);
-    
     setTimerThrottlingEnabled(m_viewState & ViewState::IsVisuallyIdle);
 
     m_storageNamespaceProvider->addPage(*this);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to