| Index: ppapi/cpp/instance.cc
|
| diff --git a/ppapi/cpp/instance.cc b/ppapi/cpp/instance.cc
|
| index a6f5997f275bd0f9dd06975347e46726053f8dd5..72e4f0295fe4f5d5b32d99488e2f8eb1a2b37ffa 100644
|
| --- a/ppapi/cpp/instance.cc
|
| +++ b/ppapi/cpp/instance.cc
|
| @@ -8,7 +8,6 @@
|
| #include "ppapi/c/ppb_input_event.h"
|
| #include "ppapi/c/ppb_instance.h"
|
| #include "ppapi/c/ppb_messaging.h"
|
| -#include "ppapi/cpp/dev/surface_3d_dev.h"
|
| #include "ppapi/cpp/graphics_2d.h"
|
| #include "ppapi/cpp/graphics_3d.h"
|
| #include "ppapi/cpp/image_data.h"
|
| @@ -89,13 +88,6 @@ bool Instance::BindGraphics(const Graphics3D& graphics) {
|
| pp_instance(), graphics.pp_resource()));
|
| }
|
|
|
| -bool Instance::BindGraphics(const Surface3D_Dev& graphics) {
|
| - if (!has_interface<PPB_Instance>())
|
| - return false;
|
| - return PP_ToBool(get_interface<PPB_Instance>()->BindGraphics(
|
| - pp_instance(), graphics.pp_resource()));
|
| -}
|
| -
|
| bool Instance::IsFullFrame() {
|
| if (!has_interface<PPB_Instance>())
|
| return false;
|
|
|