Title: [179363] trunk/Source/WebKit2
Revision
179363
Author
[email protected]
Date
2015-01-29 13:43:35 -0800 (Thu, 29 Jan 2015)

Log Message

Fix the build with newer Clang

* NetworkProcess/NetworkConnectionToWebProcess.h:
These should be 'override's.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (179362 => 179363)


--- trunk/Source/WebKit2/ChangeLog	2015-01-29 21:43:05 UTC (rev 179362)
+++ trunk/Source/WebKit2/ChangeLog	2015-01-29 21:43:35 UTC (rev 179363)
@@ -1,3 +1,10 @@
+2015-01-29  Tim Horton  <[email protected]>
+
+        Fix the build with newer Clang
+
+        * NetworkProcess/NetworkConnectionToWebProcess.h:
+        These should be 'override's.
+
 2015-01-29  Chris Dumez  <[email protected]>
 
         Clean up / modernize PageCache class

Modified: trunk/Source/WebKit2/NetworkProcess/NetworkConnectionToWebProcess.h (179362 => 179363)


--- trunk/Source/WebKit2/NetworkProcess/NetworkConnectionToWebProcess.h	2015-01-29 21:43:05 UTC (rev 179362)
+++ trunk/Source/WebKit2/NetworkProcess/NetworkConnectionToWebProcess.h	2015-01-29 21:43:35 UTC (rev 179363)
@@ -61,10 +61,10 @@
     NetworkConnectionToWebProcess(IPC::Connection::Identifier);
 
     // IPC::Connection::Client
-    virtual void didReceiveMessage(IPC::Connection&, IPC::MessageDecoder&);
-    virtual void didReceiveSyncMessage(IPC::Connection&, IPC::MessageDecoder&, std::unique_ptr<IPC::MessageEncoder>&);
-    virtual void didClose(IPC::Connection&);
-    virtual void didReceiveInvalidMessage(IPC::Connection&, IPC::StringReference messageReceiverName, IPC::StringReference messageName);
+    virtual void didReceiveMessage(IPC::Connection&, IPC::MessageDecoder&) override;
+    virtual void didReceiveSyncMessage(IPC::Connection&, IPC::MessageDecoder&, std::unique_ptr<IPC::MessageEncoder>&) override;
+    virtual void didClose(IPC::Connection&) override;
+    virtual void didReceiveInvalidMessage(IPC::Connection&, IPC::StringReference messageReceiverName, IPC::StringReference messageName) override;
     virtual IPC::ProcessType localProcessType() override { return IPC::ProcessType::Network; }
     virtual IPC::ProcessType remoteProcessType() override { return IPC::ProcessType::Web; }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to