WebPageCreationParameters.h [plain text]
#ifndef WebPageCreationParameters_h
#define WebPageCreationParameters_h
#include "DrawingAreaInfo.h"
#include "LayerTreeContext.h"
#include "SessionState.h"
#include "WebCoreArgumentCoders.h"
#include "WebPageGroupData.h"
#include "WebPreferencesStore.h"
#include <WebCore/Color.h>
#include <WebCore/FloatSize.h>
#include <WebCore/IntSize.h>
#include <WebCore/Pagination.h>
#include <WebCore/ScrollTypes.h>
#include <WebCore/SessionID.h>
#include <WebCore/ViewState.h>
#include <wtf/text/WTFString.h>
#if PLATFORM(MAC)
#include "ColorSpaceData.h"
#endif
namespace IPC {
class ArgumentDecoder;
class ArgumentEncoder;
}
namespace WebKit {
struct WebPageCreationParameters {
void encode(IPC::ArgumentEncoder&) const;
static bool decode(IPC::ArgumentDecoder&, WebPageCreationParameters&);
WebCore::IntSize viewSize;
WebCore::ViewState::Flags viewState;
WebPreferencesStore store;
DrawingAreaType drawingAreaType;
WebPageGroupData pageGroupData;
bool drawsBackground;
bool drawsTransparentBackground;
WebCore::Color underlayColor;
bool useFixedLayout;
WebCore::IntSize fixedLayoutSize;
bool suppressScrollbarAnimations;
WebCore::Pagination::Mode paginationMode;
bool paginationBehavesLikeColumns;
double pageLength;
double gapBetweenPages;
String userAgent;
Vector<BackForwardListItemState> itemStates;
WebCore::SessionID sessionID;
uint64_t highestUsedBackForwardItemID;
uint64_t userContentControllerID;
uint64_t visitedLinkTableID;
bool canRunBeforeUnloadConfirmPanel;
bool canRunModal;
float deviceScaleFactor;
float topContentInset;
float mediaVolume;
bool mayStartMediaWhenInWindow;
WebCore::IntSize minimumLayoutSize;
bool autoSizingShouldExpandToViewHeight;
WebCore::ScrollPinningBehavior scrollPinningBehavior;
bool backgroundExtendsBeyondPage;
LayerHostingMode layerHostingMode;
Vector<String> mimeTypesWithCustomContentProviders;
#if ENABLE(REMOTE_INSPECTOR)
bool allowsRemoteInspection;
#endif
#if PLATFORM(MAC)
ColorSpaceData colorSpace;
#endif
#if PLATFORM(IOS)
WebCore::FloatSize screenSize;
WebCore::FloatSize availableScreenSize;
float textAutosizingWidth;
#endif
bool appleMailPaginationQuirkEnabled;
};
}
#endif // WebPageCreationParameters_h