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

Log Message

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

Reviewed by Alex Christensen.

* loader/cache/CachedResourceLoader.cpp:
(WebCore::CachedResourceLoader::loadDone):

Modified Paths

Diff

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


--- trunk/Source/WebCore/ChangeLog	2016-05-10 20:41:49 UTC (rev 200639)
+++ trunk/Source/WebCore/ChangeLog	2016-05-10 20:42:33 UTC (rev 200640)
@@ -1,5 +1,15 @@
 2016-05-10  Csaba Osztrogonác  <[email protected]>
 
+        Fix the !ENABLE(WEB_TIMING) build
+        https://bugs.webkit.org/show_bug.cgi?id=157515
+
+        Reviewed by Alex Christensen.
+
+        * loader/cache/CachedResourceLoader.cpp:
+        (WebCore::CachedResourceLoader::loadDone):
+
+2016-05-10  Csaba Osztrogonác  <[email protected]>
+
         Fix the !ENABLE(INDEXED_DATABASE) build
         https://bugs.webkit.org/show_bug.cgi?id=157517
 

Modified: trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp (200639 => 200640)


--- trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp	2016-05-10 20:41:49 UTC (rev 200639)
+++ trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp	2016-05-10 20:42:33 UTC (rev 200640)
@@ -985,6 +985,8 @@
             m_initiatorMap.remove(initiatorIt);
         }
     }
+#else
+    UNUSED_PARAM(resource);
 #endif
 
     if (frame())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to