| Index: ppapi/native_client/src/shared/ppapi_proxy/plugin_instance_data.cc
|
| diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_instance_data.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_instance_data.cc
|
| index 71e324199bd6260075d70606251e3daf3748b349..4764a668b4c8e4e79936f1aa11f1d79f31667374 100644
|
| --- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_instance_data.cc
|
| +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_instance_data.cc
|
| @@ -43,22 +43,10 @@ void PluginInstanceData::DidDestroy(PP_Instance id) {
|
| }
|
|
|
| // static
|
| -void PluginInstanceData::DidChangeView(PP_Instance id,
|
| - PP_Rect position,
|
| - PP_Rect clip,
|
| - bool is_fullscreen) {
|
| - PluginInstanceData* instance = FromPP(id);
|
| - if (instance) {
|
| - instance->position_ = position;
|
| - instance->is_fullscreen_ = is_fullscreen;
|
| - }
|
| -}
|
| -
|
| -// static
|
| bool PluginInstanceData::IsFullscreen(PP_Instance id) {
|
| PluginInstanceData* instance = FromPP(id);
|
| if (instance)
|
| - return instance->is_fullscreen_;
|
| + return instance->last_view_data_.is_fullscreen;
|
| return false;
|
| }
|
|
|
|
|