blob: b34a2f843ca58d67ec8e53adb8b3c4a7955e8ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// Copyright (c) 2011 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.
#ifndef PPAPI_CPP_DEV_BUFFER_DEV_H_
#define PPAPI_CPP_DEV_BUFFER_DEV_H_
#include "ppapi/cpp/resource.h"
namespace pp {
class Instance;
class Buffer_Dev : public Resource {
public:
// Creates an is_null() Buffer object.
Buffer_Dev();
Buffer_Dev(const Buffer_Dev& other);
// Creates & Maps a new Buffer in the browser with the given size. The
// resulting object will be is_null() if either Create() or Map() fails.
Buffer_Dev(Instance* instance, uint32_t size);
// Unmap the underlying shared memory.
virtual ~Buffer_Dev();
uint32_t size() const { return size_; }
void* data() const { return data_; }
private:
void* data_;
uint32_t size_;
};
} // namespace pp
#endif // PPAPI_CPP_DEV_BUFFER_DEV_H_
|