Title: [102064] trunk/Source/WebCore
Revision
102064
Author
[email protected]
Date
2011-12-05 16:17:13 -0800 (Mon, 05 Dec 2011)

Log Message

Build fix for SecurityOrigin.cpp when neither BLOB nor FILE_SYSTEM are defined

Patch by Benjamin Poulain <[email protected]> on 2011-12-05
Reviewed by David Kilzer.

When neither BLOB nor FILE_SYSTEM are defined, the parameter is unused.

* page/SecurityOrigin.cpp:
(WebCore::shouldUseInnerURL):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (102063 => 102064)


--- trunk/Source/WebCore/ChangeLog	2011-12-06 00:15:16 UTC (rev 102063)
+++ trunk/Source/WebCore/ChangeLog	2011-12-06 00:17:13 UTC (rev 102064)
@@ -1,3 +1,14 @@
+2011-12-05  Benjamin Poulain  <[email protected]>
+
+        Build fix for SecurityOrigin.cpp when neither BLOB nor FILE_SYSTEM are defined
+
+        Reviewed by David Kilzer.
+
+        When neither BLOB nor FILE_SYSTEM are defined, the parameter is unused.
+
+        * page/SecurityOrigin.cpp:
+        (WebCore::shouldUseInnerURL):
+
 2011-12-05  Darin Adler  <[email protected]>
 
         Change RuleSet to use HashMap<OwnPtr>

Modified: trunk/Source/WebCore/page/SecurityOrigin.cpp (102063 => 102064)


--- trunk/Source/WebCore/page/SecurityOrigin.cpp	2011-12-06 00:15:16 UTC (rev 102063)
+++ trunk/Source/WebCore/page/SecurityOrigin.cpp	2011-12-06 00:17:13 UTC (rev 102064)
@@ -73,6 +73,7 @@
     if (url.protocolIs("filesystem"))
         return true;
 #endif
+    UNUSED_PARAM(url);
     return false;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to