diff options
Diffstat (limited to 'webkit/port/platform/chromium')
-rw-r--r-- | webkit/port/platform/chromium/ChromiumBridge.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/webkit/port/platform/chromium/ChromiumBridge.h b/webkit/port/platform/chromium/ChromiumBridge.h index 9f19d8b..3599bb7 100644 --- a/webkit/port/platform/chromium/ChromiumBridge.h +++ b/webkit/port/platform/chromium/ChromiumBridge.h @@ -33,6 +33,7 @@ #include "config.h" #include "PasteboardPrivate.h" +#include "PassRefPtr.h" #include "PlatformString.h" class NativeImageSkia; @@ -45,6 +46,7 @@ namespace WebCore { class Cursor; class Document; class Frame; + class Image; class IntRect; class KURL; class String; @@ -104,6 +106,9 @@ namespace WebCore { // Protocol ----------------------------------------------------------- static String uiResourceProtocol(); + // Resources ---------------------------------------------------------- + static PassRefPtr<Image> loadPlatformImageResource(const char* name); + // Screen ------------------------------------------------------------- static int screenDepth(Widget*); static int screenDepthPerComponent(Widget*); @@ -127,7 +132,6 @@ namespace WebCore { // Widget ------------------------------------------------------------- static void widgetSetCursor(Widget*, const Cursor&); static void widgetSetFocus(Widget*); - }; } |