| 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..5668d0720a8f3b75942a0e2876f40f0894010ea3
|
| --- /dev/null
|
| +++ b/ppapi/proxy/vpn_provider_resource.h
|
| @@ -0,0 +1,84 @@
|
| +// 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/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& name,
|
| + const PP_Var& id,
|
| + const scoped_refptr<TrackedCallback>& callback) override;
|
| + virtual int32_t GetUnBindEvent(
|
| + const scoped_refptr<TrackedCallback>& callback) override;
|
| + virtual int32_t SendPacket(
|
| + const PP_Var& packet,
|
| + const scoped_refptr<TrackedCallback>& callback) override;
|
| + virtual int32_t GetPacket(
|
| + 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,
|
| + int32_t result);
|
| + void OnPluginMsgSendPacketReply(const ResourceMessageReplyParams& params,
|
| + int32_t result);
|
| +
|
| + // Browser callbacks
|
| + void OnPluginMsgOnUnBindReceived(const ResourceMessageReplyParams& params);
|
| + void OnPluginMsgOnPacketReceived(const ResourceMessageReplyParams& params,
|
| + const std::vector<char>& data);
|
| +
|
| + // 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();
|
| +
|
| + // 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> get_packet_callback_;
|
| +
|
| + // Keeps a pointer to the callback variable provided.
|
| + // Received data will be copied to this variable on ready.
|
| + PP_Var* get_packet_callback_var_;
|
| +
|
| + bool received_unbind_event_;
|
| +
|
| + // Packet buffers
|
| + std::queue<scoped_refptr<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_
|
|
|