diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/WebContextConnectionClient.h')
-rw-r--r-- | Source/WebKit2/UIProcess/WebContextConnectionClient.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Source/WebKit2/UIProcess/WebContextConnectionClient.h b/Source/WebKit2/UIProcess/WebContextConnectionClient.h index 148bd1bdb..23bddf0a6 100644 --- a/Source/WebKit2/UIProcess/WebContextConnectionClient.h +++ b/Source/WebKit2/UIProcess/WebContextConnectionClient.h @@ -29,14 +29,20 @@ #include "APIClient.h" #include "WKContext.h" +namespace API { +template<> struct ClientTraits<WKContextConnectionClientBase> { + typedef std::tuple<WKContextConnectionClientV0> Versions; +}; +} + namespace WebKit { class WebConnection; -class WebContext; +class WebProcessPool; -class WebContextConnectionClient : public APIClient<WKContextConnectionClient, kWKContextConnectionClientCurrentVersion> { +class WebContextConnectionClient : public API::Client<WKContextConnectionClientBase> { public: - void didCreateConnection(WebContext*, WebConnection*); + void didCreateConnection(WebProcessPool*, WebConnection*); }; } // namespace WebKit |