diff options
Diffstat (limited to 'ppapi/cpp/dev/widget_dev.h')
-rw-r--r-- | ppapi/cpp/dev/widget_dev.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ppapi/cpp/dev/widget_dev.h b/ppapi/cpp/dev/widget_dev.h index bdc1399..79540a8 100644 --- a/ppapi/cpp/dev/widget_dev.h +++ b/ppapi/cpp/dev/widget_dev.h @@ -8,11 +8,10 @@ #include "ppapi/c/pp_stdint.h" #include "ppapi/cpp/resource.h" -struct PP_InputEvent; - namespace pp { class ImageData; +class InputEvent; class Instance; class Rect; @@ -28,7 +27,7 @@ class Widget_Dev : public Resource { // PPB_Widget methods: bool Paint(const Rect& rect, ImageData* image); - bool HandleEvent(const PP_InputEvent& event); + bool HandleEvent(const InputEvent& event); bool GetLocation(Rect* location); void SetLocation(const Rect& location); }; |