| Index: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.cc
|
| diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.cc
|
| index 5d840a5b6057ccfb0d5d9246dbb5745453038e7e..4ad5d5b9f3543e4aef25789eb6fd4503ae64d651 100644
|
| --- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.cc
|
| +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.cc
|
| @@ -82,11 +82,7 @@ PP_Bool GetClipRect(PP_Resource resource, PP_Rect* clip) {
|
|
|
| } // namespace
|
|
|
| -PluginView::PluginView() {
|
| -}
|
| -
|
| -PluginView::~PluginView() {
|
| -}
|
| +PluginView::PluginView() {}
|
|
|
| void PluginView::Init(const ViewData& view_data) {
|
| view_data_ = view_data;
|
| @@ -104,4 +100,6 @@ const PPB_View* PluginView::GetInterface() {
|
| return &view_interface;
|
| }
|
|
|
| +PluginView::~PluginView() {}
|
| +
|
| } // namespace ppapi_proxy
|
|
|