Title: [200639] trunk/Source/WebCore
Revision
200639
Author
[email protected]
Date
2016-05-10 13:41:49 -0700 (Tue, 10 May 2016)

Log Message

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

Reviewed by Alex Christensen.

* workers/WorkerGlobalScope.cpp:
(WebCore::WorkerGlobalScope::WorkerGlobalScope):
* workers/WorkerThread.cpp:
(WebCore::WorkerThread::WorkerThread):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200638 => 200639)


--- trunk/Source/WebCore/ChangeLog	2016-05-10 20:32:02 UTC (rev 200638)
+++ trunk/Source/WebCore/ChangeLog	2016-05-10 20:41:49 UTC (rev 200639)
@@ -1,3 +1,15 @@
+2016-05-10  Csaba Osztrogonác  <[email protected]>
+
+        Fix the !ENABLE(INDEXED_DATABASE) build
+        https://bugs.webkit.org/show_bug.cgi?id=157517
+
+        Reviewed by Alex Christensen.
+
+        * workers/WorkerGlobalScope.cpp:
+        (WebCore::WorkerGlobalScope::WorkerGlobalScope):
+        * workers/WorkerThread.cpp:
+        (WebCore::WorkerThread::WorkerThread):
+
 2016-05-05  Jer Noble  <[email protected]>
 
         Return a Promise from HTMLMediaElement.play()

Modified: trunk/Source/WebCore/workers/WorkerGlobalScope.cpp (200638 => 200639)


--- trunk/Source/WebCore/workers/WorkerGlobalScope.cpp	2016-05-10 20:32:02 UTC (rev 200638)
+++ trunk/Source/WebCore/workers/WorkerGlobalScope.cpp	2016-05-10 20:41:49 UTC (rev 200639)
@@ -76,6 +76,9 @@
     , m_connectionProxy(connectionProxy)
 #endif
 {
+#if !ENABLE(INDEXED_DATABASE)
+    UNUSED_PARAM(connectionProxy);
+#endif
     auto origin = SecurityOrigin::create(url);
     if (m_topOrigin->hasUniversalAccess())
         origin->grantUniversalAccess();

Modified: trunk/Source/WebCore/workers/WorkerThread.cpp (200638 => 200639)


--- trunk/Source/WebCore/workers/WorkerThread.cpp	2016-05-10 20:32:02 UTC (rev 200638)
+++ trunk/Source/WebCore/workers/WorkerThread.cpp	2016-05-10 20:41:49 UTC (rev 200639)
@@ -105,6 +105,9 @@
     , m_idbConnectionProxy(connectionProxy)
 #endif
 {
+#if !ENABLE(INDEXED_DATABASE)
+    UNUSED_PARAM(connectionProxy);
+#endif
     std::lock_guard<StaticLock> lock(threadSetMutex);
 
     workerThreads().add(this);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to