summaryrefslogtreecommitdiff
path: root/chromium/ppapi/proxy/proxy_array_output.cc
blob: 26fdbf481df3e0a32871205f91820831b8b69e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ppapi/proxy/proxy_array_output.h"


namespace ppapi {
namespace proxy {

// static
void* ArrayOutputAdapterBase::GetDataBufferThunk(void* user_data,
                                                 uint32_t element_count,
                                                 uint32_t element_size) {
  return static_cast<ArrayOutputAdapterBase*>(user_data)->
      GetDataBuffer(element_count, element_size);
}

}  // namespace proxy
}  // namespace ppapi