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

Unified Diff: ppapi/proxy/vpn_provider_resource.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/proxy/vpn_provider_resource.h
diff --git a/ppapi/proxy/vpn_provider_resource.h b/ppapi/proxy/vpn_provider_resource.h
new file mode 100644
index 0000000000000000000000000000000000000000..456d7ab85761977f422995c61c7ba6ddb47c3dad
--- /dev/null
+++ b/ppapi/proxy/vpn_provider_resource.h
@@ -0,0 +1,92 @@
+// Copyright (c) 2015 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_PROXY_VPN_PROVIDER_RESOURCE_H_
+#define PPAPI_PROXY_VPN_PROVIDER_RESOURCE_H_
+
+#include "ppapi/c/ppb_vpn_provider.h"
+#include "ppapi/proxy/plugin_dispatcher.h"
+#include "ppapi/proxy/plugin_resource.h"
+#include "ppapi/proxy/serialized_structs.h"
+#include "ppapi/shared_impl/tracked_callback.h"
+#include "ppapi/shared_impl/vpn_provider_util.h"
+#include "ppapi/thunk/ppb_vpn_provider_api.h"
+
+namespace ppapi {
+namespace proxy {
+
+class PPAPI_PROXY_EXPORT VpnProviderResource
+ : public PluginResource,
+ public NON_EXPORTED_BASE(thunk::PPB_VpnProvider_API) {
+ public:
+ VpnProviderResource(Connection connection, PP_Instance instance);
+ virtual ~VpnProviderResource();
+
+ // PluginResource implementation.
+ virtual thunk::PPB_VpnProvider_API* AsPPB_VpnProvider_API() override;
+
+ // PPB_VpnProvider_API implementation.
+ virtual int32_t Bind(const PP_Var& configuration_id,
+ const PP_Var& configuration_name,
+ const scoped_refptr<TrackedCallback>& callback) override;
+ virtual int32_t GetUnBindEvent(
+ const scoped_refptr<TrackedCallback>& callback) override;
+ virtual int32_t SendPacket(
+ const PP_Var& data,
+ const scoped_refptr<TrackedCallback>& callback) override;
+ virtual int32_t ReceivePacket(
+ PP_Var* packet,
+ const scoped_refptr<TrackedCallback>& callback) override;
+
+ private:
+ // PluginResource overrides.
+ virtual void OnReplyReceived(const ResourceMessageReplyParams& params,
+ const IPC::Message& msg) override;
+
+ // PPB_VpnProvider IPC Replies
+ void OnPluginMsgBindReply(const ResourceMessageReplyParams& params,
+ uint32_t queue_depth,
+ uint32_t packet_size,
+ int32_t result);
+ void OnPluginMsgSendPacketReply(const ResourceMessageReplyParams& params,
+ int32_t result);
+
+ // Browser callbacks
+ void OnPluginMsgOnUnBindReceived(const ResourceMessageReplyParams& params);
+ void OnPluginMsgOnPacketReceived(const ResourceMessageReplyParams& params,
+ uint32_t data_length,
+ uint32_t id);
+
+ // Picks up a received message and moves it to user receiving buffer. This
+ // function is used in both Get*() for fast returning path, and
+ // OnPluginMsgOn*() for delayed callback invocations.
+ void WritePacket();
+
+ void ProcessQueuedPackets(uint32_t id);
+ int32_t DoSendPacket(const PP_Var& data, uint32_t id);
+
+ // Holds user callbacks to invoke later.
+ scoped_refptr<TrackedCallback> bind_callback_;
+ scoped_refptr<TrackedCallback> get_unbind_event_callback_;
+ scoped_refptr<TrackedCallback> send_packet_callback_;
+ scoped_refptr<TrackedCallback> receive_packet_callback_;
+
+ // Keeps a pointer to the callback variable provided.
+ // Received data will be copied to this variable on ready.
+ PP_Var* receive_packet_callback_var_;
+
+ std::unique_ptr<ppapi::VpnProviderSharedBuffer> send_packet_buffer_;
+ std::unique_ptr<ppapi::VpnProviderSharedBuffer> receive_packet_buffer_;
+
+ // Packet buffers
+ std::queue<PP_Var> send_packets_;
+ std::queue<scoped_refptr<Var>> received_packets_;
+
+ DISALLOW_COPY_AND_ASSIGN(VpnProviderResource);
+};
+
+} // namespace proxy
+} // namespace ppapi
+
+#endif // PPAPI_PROXY_VPN_PROVIDER_RESOURCE_H_

Powered by Google App Engine
This is Rietveld 408576698