Index: ppapi/cpp/dev/selection_dev.h |
diff --git a/ppapi/cpp/dev/selection_dev.h b/ppapi/cpp/dev/selection_dev.h |
index 282bdb431977c0e6bfffc20e7aec436ca5034c25..fa7f39013d8b74f45666a1adb08a1cec18442c3e 100644 |
--- a/ppapi/cpp/dev/selection_dev.h |
+++ b/ppapi/cpp/dev/selection_dev.h |
@@ -6,10 +6,10 @@ |
#define PPAPI_CPP_DEV_SELECTION_DEV_H_ |
#include "ppapi/c/dev/ppp_selection_dev.h" |
+#include "ppapi/cpp/instance_handle.h" |
namespace pp { |
-class Instance; |
class Var; |
// This class allows you to associate the PPP_Selection_Dev C-based interface |
@@ -36,7 +36,7 @@ class Var; |
// }; |
class Selection_Dev { |
public: |
- Selection_Dev(Instance* instance); |
+ Selection_Dev(const InstanceHandle& instance); |
dmichael (off chromium)
2012/02/22 21:38:44
explicit
|
virtual ~Selection_Dev(); |
// PPP_Selection_Dev functions exposed as virtual functions for you to |
@@ -44,7 +44,7 @@ class Selection_Dev { |
virtual Var GetSelectedText(bool html) = 0; |
private: |
- Instance* associated_instance_; |
+ InstanceHandle associated_instance_; |
}; |
} // namespace pp |