Title: [154756] trunk/Source/WebKit2
Revision
154756
Author
[email protected]
Date
2013-08-28 10:05:20 -0700 (Wed, 28 Aug 2013)

Log Message

[wk2] Resolve unused parameters in WebPlatformStrategies.cpp
https://bugs.webkit.org/show_bug.cgi?id=120410

Patch by Tamas Czene <[email protected]> on 2013-08-28
Reviewed by Darin Adler.

* WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
(WebKit::WebPlatformStrategies::getPluginInfo):
(WebKit::WebPlatformStrategies::transientLocalStorageNamespace):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (154755 => 154756)


--- trunk/Source/WebKit2/ChangeLog	2013-08-28 17:04:02 UTC (rev 154755)
+++ trunk/Source/WebKit2/ChangeLog	2013-08-28 17:05:20 UTC (rev 154756)
@@ -1,5 +1,16 @@
 2013-08-28  Tamas Czene  <[email protected]>
 
+        [wk2] Resolve unused parameters in WebPlatformStrategies.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=120410
+
+        Reviewed by Darin Adler.
+
+        * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
+        (WebKit::WebPlatformStrategies::getPluginInfo):
+        (WebKit::WebPlatformStrategies::transientLocalStorageNamespace):
+
+2013-08-28  Tamas Czene  <[email protected]>
+
         [wk2] Resolve unused parameter warnings in the WebProcess.cpp
         https://bugs.webkit.org/show_bug.cgi?id=120412
 

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp (154755 => 154756)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2013-08-28 17:04:02 UTC (rev 154755)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2013-08-28 17:05:20 UTC (rev 154756)
@@ -302,6 +302,9 @@
     }
 
     plugins = m_cachedApplicationPlugins;
+#else
+    UNUSED_PARAM(page);
+    UNUSED_PARAM(plugins);
 #endif // ENABLE(NETSCAPE_PLUGIN_API)
 }
 
@@ -348,6 +351,7 @@
 PassRefPtr<StorageNamespace> WebPlatformStrategies::transientLocalStorageNamespace(PageGroup* pageGroup, SecurityOrigin*securityOrigin)
 {
 #if ENABLE(UI_PROCESS_STORAGE)
+    UNUSED_PARAM(securityOrigin);
     // FIXME: This could be more clever and made to work across processes.
     return StorageStrategy::sessionStorageNamespace(*pageGroup->pages().begin());
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to