summaryrefslogtreecommitdiff
path: root/Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2012-10-16 14:56:46 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2012-10-16 14:57:30 +0200
commitb297e0fa5c217c9467033b7c8b46891a52870120 (patch)
tree43fc14689295e9e64f2719d05aad94e3049f6cd7 /Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h
parent69d517dbfa69903d8593cc1737f0474b21e3251e (diff)
downloadqtwebkit-b297e0fa5c217c9467033b7c8b46891a52870120.tar.gz
Revert "Imported WebKit commit 0dc6cd75e1d4836eaffbb520be96fac4847cc9d2 (http://svn.webkit.org/repository/webkit/trunk@131300)"
This reverts commit 5466563f4b5b6b86523e3f89bb7f77e5b5270c78. Caused OOM issues on some CI machines :(
Diffstat (limited to 'Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h')
-rw-r--r--Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h26
1 files changed, 4 insertions, 22 deletions
diff --git a/Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h b/Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h
index cbb079421..91e6c5cfd 100644
--- a/Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h
+++ b/Source/WebKit2/WebProcess/WebPage/WebPageGroupProxy.h
@@ -30,16 +30,6 @@
#include "WebPageGroupData.h"
#include <wtf/PassRefPtr.h>
-namespace CoreIPC {
-class ArgumentDecoder;
-class Connection;
-class MessageID;
-}
-
-namespace WebCore {
-class PageGroup;
-}
-
namespace WebKit {
class WebPageGroupProxy : public APIObject {
@@ -53,24 +43,16 @@ public:
uint64_t pageGroupID() const { return m_data.pageGroupID; }
bool isVisibleToInjectedBundle() const { return m_data.visibleToInjectedBundle; }
bool isVisibleToHistoryClient() const { return m_data.visibleToHistoryClient; }
-
- void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
private:
- WebPageGroupProxy(const WebPageGroupData&);
+ WebPageGroupProxy(const WebPageGroupData& data)
+ : m_data(data)
+ {
+ }
virtual Type type() const { return APIType; }
-
- void didReceiveWebPageGroupProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
-
- void addUserStyleSheet(const WebCore::UserStyleSheet&);
- void addUserScript(const WebCore::UserScript&);
- void removeAllUserStyleSheets();
- void removeAllUserScripts();
- void removeAllUserContent();
WebPageGroupData m_data;
- WebCore::PageGroup* m_pageGroup;
};
} // namespace WebKit