summaryrefslogtreecommitdiffstats
path: root/ppapi/thunk/ppb_scrollbar_thunk.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/thunk/ppb_scrollbar_thunk.cc')
-rw-r--r--ppapi/thunk/ppb_scrollbar_thunk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/thunk/ppb_scrollbar_thunk.cc b/ppapi/thunk/ppb_scrollbar_thunk.cc
index 572312d..7b67db2 100644
--- a/ppapi/thunk/ppb_scrollbar_thunk.cc
+++ b/ppapi/thunk/ppb_scrollbar_thunk.cc
@@ -43,7 +43,7 @@ uint32_t GetValue(PP_Resource scrollbar) {
void SetValue(PP_Resource scrollbar, uint32_t value) {
EnterScrollbar enter(scrollbar, true);
if (enter.succeeded())
- enter.object()->GetValue();
+ enter.object()->SetValue(value);
}
void SetDocumentSize(PP_Resource scrollbar, uint32_t size) {