blob: 94833ebc2868e8e9137e566318b0c3149c44e3dd [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ppapi/thunk/thunk.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_widget_api.h"
#include "ppapi/thunk/resource_creation_api.h"
namespace ppapi {
namespace thunk {
namespace {
PP_Bool IsWidget(PP_Resource resource) {
EnterResource<PPB_Widget_API> enter(resource, false);
return PP_FromBool(enter.succeeded());
}
PP_Bool Paint(PP_Resource widget, const PP_Rect* rect, PP_Resource image_id) {
EnterResource<PPB_Widget_API> enter(widget, false);
if (enter.failed())
return PP_FALSE;
return enter.object()->Paint(rect, image_id);
}
PP_Bool HandleEvent(PP_Resource widget, PP_Resource pp_input_event) {
EnterResource<PPB_Widget_API> enter(widget, false);
if (enter.failed())
return PP_FALSE;
return enter.object()->HandleEvent(pp_input_event);
}
PP_Bool GetLocation(PP_Resource widget, PP_Rect* location) {
EnterResource<PPB_Widget_API> enter(widget, false);
if (enter.failed())
return PP_FALSE;
return enter.object()->GetLocation(location);
}
void SetLocation(PP_Resource widget, const PP_Rect* location) {
EnterResource<PPB_Widget_API> enter(widget, false);
if (enter.succeeded())
enter.object()->SetLocation(location);
}
const PPB_Widget_Dev g_ppb_widget_thunk = {
&IsWidget,
&Paint,
&HandleEvent,
&GetLocation,
&SetLocation,
};
} // namespace
const PPB_Widget_Dev_0_3* GetPPB_Widget_Dev_0_3_Thunk() {
return &g_ppb_widget_thunk;
}
} // namespace thunk
} // namespace ppapi