| Index: ppapi/cpp/dev/selection_dev.cc
|
| diff --git a/ppapi/cpp/dev/selection_dev.cc b/ppapi/cpp/dev/selection_dev.cc
|
| index 37bbbeb1dfe483308de4669bc3b2fdd62153b0c1..7e1284bb66fba179eb253ed62bf5f70676173fc9 100644
|
| --- a/ppapi/cpp/dev/selection_dev.cc
|
| +++ b/ppapi/cpp/dev/selection_dev.cc
|
| @@ -30,10 +30,10 @@ const PPP_Selection_Dev ppp_selection = {
|
|
|
| } // namespace
|
|
|
| -Selection_Dev::Selection_Dev(const InstanceHandle& instance)
|
| +Selection_Dev::Selection_Dev(Instance* instance)
|
| : associated_instance_(instance) {
|
| Module::Get()->AddPluginInterface(kPPPSelectionInterface, &ppp_selection);
|
| - Instance::AddPerInstanceObject(instance, kPPPSelectionInterface, this);
|
| + instance->AddPerInstanceObject(kPPPSelectionInterface, this);
|
| }
|
|
|
| Selection_Dev::~Selection_Dev() {
|
|
|