Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(639)

Unified Diff: ppapi/shared_impl/vpn_provider_util.h

Issue 1726303003: ppapi: PPB_VpnProvider: Define API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..b84811870e618f0b1412fceec389de77b2ef7126
--- /dev/null
+++ b/ppapi/shared_impl/vpn_provider_util.h
@@ -0,0 +1,33 @@
+// 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 "base/memory/shared_memory.h"
+
+namespace ppapi {
+
+class 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();
+
+ private:
+ uint32_t capacity_;
+ uint32_t packet_size_;
+ std::unique_ptr<base::SharedMemory> shm_;
+ std::unique_ptr<bool[]> available_;
+};
+
+} // namespace ppapi
+
+#endif // PPAPI_SHAERD_IMPL_VPN_PROVIDER_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698