Title: [195449] trunk/Source/WebCore
Revision
195449
Author
[email protected]
Date
2016-01-22 03:06:05 -0800 (Fri, 22 Jan 2016)

Log Message

Fix the !ENABLE(INDEXED_DATABASE) build after r195443
https://bugs.webkit.org/show_bug.cgi?id=153350

Unreviewed buildfix.


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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (195448 => 195449)


--- trunk/Source/WebCore/ChangeLog	2016-01-22 11:01:28 UTC (rev 195448)
+++ trunk/Source/WebCore/ChangeLog	2016-01-22 11:06:05 UTC (rev 195449)
@@ -1,3 +1,13 @@
+2016-01-22  Csaba Osztrogonác  <[email protected]>
+
+        Fix the !ENABLE(INDEXED_DATABASE) build after r195443
+        https://bugs.webkit.org/show_bug.cgi?id=153350
+
+        Unreviewed buildfix.
+
+        * page/Page.cpp:
+        (WebCore::Page::setSessionID):
+
 2016-01-22  ChangSeok Oh  <[email protected]>
 
         [GTK] Remove a focus ring on anchor node when focused by mouse.

Modified: trunk/Source/WebCore/page/Page.cpp (195448 => 195449)


--- trunk/Source/WebCore/page/Page.cpp	2016-01-22 11:01:28 UTC (rev 195448)
+++ trunk/Source/WebCore/page/Page.cpp	2016-01-22 11:06:05 UTC (rev 195449)
@@ -1735,8 +1735,10 @@
 {
     ASSERT(sessionID.isValid());
 
+#if ENABLE(INDEXED_DATABASE)
     if (sessionID != m_sessionID)
         m_idbIDBConnectionToServer = nullptr;
+#endif
 
     bool privateBrowsingStateChanged = (sessionID.isEphemeral() != m_sessionID.isEphemeral());
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to