Title: [171291] trunk/Source/WebKit2
Revision
171291
Author
[email protected]
Date
2014-07-20 22:36:59 -0700 (Sun, 20 Jul 2014)

Log Message

Fix warnings caused by unused parameter.
https://bugs.webkit.org/show_bug.cgi?id=134975

Patch by KwangHyuk Kim <[email protected]> on 2014-07-20
Reviewed by Gyuyoung Kim.

Fix warnings on EwkView.cpp and LegacySessionStateCodingNone.cpp that are caused by unused parameter data.

* UIProcess/API/efl/EwkView.cpp:
(EwkViewEventHandler<EVAS_CALLBACK_MOUSE_IN>::handleEvent):
* UIProcess/LegacySessionStateCodingNone.cpp:
(WebKit::decodeLegacySessionState):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (171290 => 171291)


--- trunk/Source/WebKit2/ChangeLog	2014-07-21 05:34:22 UTC (rev 171290)
+++ trunk/Source/WebKit2/ChangeLog	2014-07-21 05:36:59 UTC (rev 171291)
@@ -1,3 +1,17 @@
+2014-07-20  KwangHyuk Kim  <[email protected]>
+
+        Fix warnings caused by unused parameter.
+        https://bugs.webkit.org/show_bug.cgi?id=134975
+
+        Reviewed by Gyuyoung Kim.
+
+        Fix warnings on EwkView.cpp and LegacySessionStateCodingNone.cpp that are caused by unused parameter data.
+
+        * UIProcess/API/efl/EwkView.cpp:
+        (EwkViewEventHandler<EVAS_CALLBACK_MOUSE_IN>::handleEvent):
+        * UIProcess/LegacySessionStateCodingNone.cpp:
+        (WebKit::decodeLegacySessionState):
+
 2014-07-20  Jeremy Jones  <[email protected]>
 
         Disable ff/rw based on canPlayFastForward and canPlayFastRewind.

Modified: trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp (171290 => 171291)


--- trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp	2014-07-21 05:34:22 UTC (rev 171290)
+++ trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp	2014-07-21 05:36:59 UTC (rev 171291)
@@ -217,7 +217,7 @@
 }
 
 template <>
-void EwkViewEventHandler<EVAS_CALLBACK_MOUSE_IN>::handleEvent(void* data, Evas*, Evas_Object*, void*)
+void EwkViewEventHandler<EVAS_CALLBACK_MOUSE_IN>::handleEvent(void*, Evas*, Evas_Object*, void*)
 {
     // FIXME: self->updateCursor(); was removed in order to fix crash caused by invalid cursor image.
     // new cursor implementation should be added for curso image restoration previously used for.

Modified: trunk/Source/WebKit2/UIProcess/LegacySessionStateCodingNone.cpp (171290 => 171291)


--- trunk/Source/WebKit2/UIProcess/LegacySessionStateCodingNone.cpp	2014-07-21 05:34:22 UTC (rev 171290)
+++ trunk/Source/WebKit2/UIProcess/LegacySessionStateCodingNone.cpp	2014-07-21 05:36:59 UTC (rev 171291)
@@ -44,7 +44,7 @@
     return API::Data::create(nullptr, 0);
 }
 
-bool decodeLegacySessionState(const uint8_t* data, size_t, SessionState&)
+bool decodeLegacySessionState(const uint8_t*, size_t, SessionState&)
 {
     notImplemented();
     return false;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to