diff options
author | Simon Hausmann <simon.hausmann@digia.com> | 2012-10-22 15:40:17 +0200 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-10-22 15:40:17 +0200 |
commit | 43a42f108af6bcbd91f2672731c3047c26213af1 (patch) | |
tree | 7fa092e5f5d873c72f2486a70e26be26f7a38bec /Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h | |
parent | d9cf437c840c6eb7417bdd97e6c40979255d3158 (diff) | |
download | qtwebkit-43a42f108af6bcbd91f2672731c3047c26213af1.tar.gz |
Imported WebKit commit 302e7806bff028bd1167a1ec7c86a1ee00ecfb49 (http://svn.webkit.org/repository/webkit/trunk@132067)
New snapshot that fixes build without QtWidgets
Diffstat (limited to 'Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h')
-rw-r--r-- | Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h b/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h index 38d48e119..3258469ba 100644 --- a/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h +++ b/Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h @@ -30,9 +30,9 @@ #include <wtf/text/WTFString.h> namespace CoreIPC { - class ArgumentDecoder; - class Connection; - class MessageID; +class Connection; +class MessageDecoder; +class MessageID; } namespace WebKit { @@ -45,7 +45,7 @@ class WebApplicationCacheManager { public: static WebApplicationCacheManager& shared(); - void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); + void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::MessageDecoder&); void deleteAllEntries(); void setAppCacheMaximumSize(uint64_t); @@ -55,7 +55,7 @@ private: void getApplicationCacheOrigins(uint64_t callbackID); void deleteEntriesForOrigin(const SecurityOriginData&); - void didReceiveWebApplicationCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*); + void didReceiveWebApplicationCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::MessageDecoder&); }; } // namespace WebKit |