| Index: ppapi/cpp/dev/widget_client_dev.h
|
| diff --git a/ppapi/cpp/dev/widget_client_dev.h b/ppapi/cpp/dev/widget_client_dev.h
|
| index c86562157a273f351c3e98e6072ed721f568cc83..808a72eb87ed25890ed142869232468b9f48a959 100644
|
| --- a/ppapi/cpp/dev/widget_client_dev.h
|
| +++ b/ppapi/cpp/dev/widget_client_dev.h
|
| @@ -6,10 +6,10 @@
|
| #define PPAPI_CPP_DEV_WIDGET_CLIENT_DEV_H_
|
|
|
| #include "ppapi/c/pp_stdint.h"
|
| +#include "ppapi/cpp/instance_handle.h"
|
|
|
| namespace pp {
|
|
|
| -class Instance;
|
| class Rect;
|
| class Scrollbar_Dev;
|
| class Widget_Dev;
|
| @@ -19,7 +19,7 @@ class Widget_Dev;
|
| // instance.
|
| class WidgetClient_Dev {
|
| public:
|
| - WidgetClient_Dev(Instance* instance);
|
| + explicit WidgetClient_Dev(const InstanceHandle& instance);
|
| virtual ~WidgetClient_Dev();
|
|
|
| /**
|
| @@ -43,7 +43,7 @@ class WidgetClient_Dev {
|
| bool type) = 0;
|
|
|
| private:
|
| - Instance* associated_instance_;
|
| + InstanceHandle associated_instance_;
|
| };
|
|
|
| } // namespace pp
|
|
|