summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/Shared/PlatformPopupMenuData.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/Shared/PlatformPopupMenuData.h')
-rw-r--r--Source/WebKit2/Shared/PlatformPopupMenuData.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/WebKit2/Shared/PlatformPopupMenuData.h b/Source/WebKit2/Shared/PlatformPopupMenuData.h
index 88e03fc..f79b4b2 100644
--- a/Source/WebKit2/Shared/PlatformPopupMenuData.h
+++ b/Source/WebKit2/Shared/PlatformPopupMenuData.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -26,6 +26,7 @@
#ifndef PlatformPopupMenuData_h
#define PlatformPopupMenuData_h
+#include "FontInfo.h"
#include "ShareableBitmap.h"
#include <wtf/text/WTFString.h>
@@ -38,7 +39,7 @@ namespace WebKit {
struct PlatformPopupMenuData {
PlatformPopupMenuData();
-
+
void encode(CoreIPC::ArgumentEncoder*) const;
static bool decode(CoreIPC::ArgumentDecoder*, PlatformPopupMenuData&);
@@ -52,6 +53,8 @@ struct PlatformPopupMenuData {
WebCore::IntSize m_backingStoreSize;
RefPtr<ShareableBitmap> m_notSelectedBackingStore;
RefPtr<ShareableBitmap> m_selectedBackingStore;
+#elif PLATFORM(MAC)
+ FontInfo fontInfo;
#endif
};