| Index: ppapi/thunk/ppb_buffer_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_buffer_thunk.cc b/ppapi/thunk/ppb_buffer_thunk.cc
|
| index 177a342fea65eede70d09304de257c1259b8ddf5..9c6698d27da72995bdfd093aedd910b6aca8e609 100644
|
| --- a/ppapi/thunk/ppb_buffer_thunk.cc
|
| +++ b/ppapi/thunk/ppb_buffer_thunk.cc
|
| @@ -14,7 +14,7 @@ namespace thunk {
|
| namespace {
|
|
|
| PP_Resource Create(PP_Instance instance, uint32_t size) {
|
| - EnterFunction<ResourceCreationAPI> enter(instance, true);
|
| + EnterResourceCreation enter(instance);
|
| if (enter.failed())
|
| return 0;
|
| return enter.functions()->CreateBuffer(instance, size);
|
|
|