Title: [88470] trunk/Source/WebKit2
- Revision
- 88470
- Author
- [email protected]
- Date
- 2011-06-09 12:02:48 -0700 (Thu, 09 Jun 2011)
Log Message
2011-06-09 Andreas Kling <[email protected]>
Reviewed by Darin Adler.
WebKit2: Remove unused function CoreIPC::Connection::deprecatedWaitFor().
https://bugs.webkit.org/show_bug.cgi?id=62386
* Platform/CoreIPC/Connection.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (88469 => 88470)
--- trunk/Source/WebKit2/ChangeLog 2011-06-09 18:51:46 UTC (rev 88469)
+++ trunk/Source/WebKit2/ChangeLog 2011-06-09 19:02:48 UTC (rev 88470)
@@ -1,5 +1,14 @@
2011-06-09 Andreas Kling <[email protected]>
+ Reviewed by Darin Adler.
+
+ WebKit2: Remove unused function CoreIPC::Connection::deprecatedWaitFor().
+ https://bugs.webkit.org/show_bug.cgi?id=62386
+
+ * Platform/CoreIPC/Connection.h:
+
+2011-06-09 Andreas Kling <[email protected]>
+
Reviewed by Anders Carlsson.
[Qt][WK2] Remove usage of deprecated CoreIPC functions.
Modified: trunk/Source/WebKit2/Platform/CoreIPC/Connection.h (88469 => 88470)
--- trunk/Source/WebKit2/Platform/CoreIPC/Connection.h 2011-06-09 18:51:46 UTC (rev 88469)
+++ trunk/Source/WebKit2/Platform/CoreIPC/Connection.h 2011-06-09 19:02:48 UTC (rev 88470)
@@ -159,8 +159,7 @@
// All clients should move to the overloads that take a message type.
template<typename E, typename T> bool deprecatedSend(E messageID, uint64_t destinationID, const T& arguments);
template<typename E, typename T, typename U> bool deprecatedSendSync(E messageID, uint64_t destinationID, const T& arguments, const U& reply, double timeout = NoTimeout);
- template<typename E> PassOwnPtr<ArgumentDecoder> deprecatedWaitFor(E messageID, uint64_t destinationID, double timeout);
-
+
private:
template<typename T> class Message {
public:
@@ -416,11 +415,6 @@
return sendMessage(MessageID(messageID), argumentEncoder.release());
}
-template<typename E> inline PassOwnPtr<ArgumentDecoder> Connection::deprecatedWaitFor(E messageID, uint64_t destinationID, double timeout)
-{
- return waitForMessage(MessageID(messageID), destinationID, timeout);
-}
-
} // namespace CoreIPC
#endif // Connection_h
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes