Chromium Code Reviews| Index: ppapi/shared_impl/vpn_provider_util.h |
| diff --git a/ppapi/shared_impl/vpn_provider_util.h b/ppapi/shared_impl/vpn_provider_util.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e31bc93cc63cfdc90e8553c9a53f7a48b2541015 |
| --- /dev/null |
| +++ b/ppapi/shared_impl/vpn_provider_util.h |
| @@ -0,0 +1,36 @@ |
| +// Copyright 2016 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_SHAERD_IMPL_VPN_PROVIDER_UTIL_H_ |
| +#define PPAPI_SHAERD_IMPL_VPN_PROVIDER_UTIL_H_ |
| + |
| +#include <memory> |
| + |
| +#include "base/memory/shared_memory.h" |
| +#include "ppapi/shared_impl/ppapi_shared_export.h" |
| + |
| +namespace ppapi { |
| + |
| +class PPAPI_SHARED_EXPORT VpnProviderSharedBuffer { |
| + public: |
| + VpnProviderSharedBuffer(uint32_t capacity, |
| + uint32_t packet_size, |
| + std::unique_ptr<base::SharedMemory> shm); |
| + ~VpnProviderSharedBuffer(); |
| + |
| + bool GetAvailable(uint32_t* id); |
| + void SetAvailable(uint32_t id, bool value); |
| + void* GetBuffer(uint32_t id); |
| + base::SharedMemoryHandle GetHandle(); |
|
bbudge
2016/05/17 09:50:12
This doesn't seem to be used yet. It seems undesir
adrian.belgun
2016/05/17 11:05:29
This class is used by both the Resource and the Re
bbudge
2016/05/17 13:34:39
But the host has access to that handle already (to
adrian.belgun
2016/05/17 15:25:29
The issue is that this API is tied to the chrome.v
|
| + |
| + private: |
| + uint32_t capacity_; |
| + uint32_t packet_size_; |
| + std::unique_ptr<base::SharedMemory> shm_; |
| + std::unique_ptr<bool[]> available_; |
|
bbudge
2016/05/17 09:50:12
std::vector<bool> is a little tricky to use but sh
adrian.belgun
2016/05/17 11:05:29
Done.
|
| +}; |
| + |
| +} // namespace ppapi |
| + |
| +#endif // PPAPI_SHAERD_IMPL_VPN_PROVIDER_UTIL_H_ |