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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
// 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_PPB_URL_LOADER_PROXY_H_
#define PPAPI_PPB_URL_LOADER_PROXY_H_
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_module.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_size.h"
#include "ppapi/c/pp_var.h"
#include "ppapi/cpp/completion_callback.h"
#include "ppapi/proxy/interface_proxy.h"
#include "ppapi/proxy/proxy_non_thread_safe_ref_count.h"
#include "ppapi/shared_impl/host_resource.h"
struct PPB_URLLoader;
struct PPB_URLLoaderTrusted;
namespace ppapi {
struct PPB_URLRequestInfo_Data;
namespace proxy {
struct PPBURLLoader_UpdateProgress_Params;
class PPB_URLLoader_Proxy : public InterfaceProxy {
public:
PPB_URLLoader_Proxy(Dispatcher* dispatcher);
virtual ~PPB_URLLoader_Proxy();
static const Info* GetTrustedInfo();
static PP_Resource CreateProxyResource(PP_Instance instance);
// URLLoader objects are normally allocated by the Create function, but
// they are also provided to PPP_Instance.OnMsgHandleDocumentLoad. This
// function allows the proxy for DocumentLoad to create the correct plugin
// proxied info for the given browser-supplied URLLoader resource ID.
static PP_Resource TrackPluginResource(
const ppapi::HostResource& url_loader_resource);
// InterfaceProxy implementation.
virtual bool OnMessageReceived(const IPC::Message& msg);
// URLLoader objects are sent from places other than just URLLoader.Create,
// in particular when doing a full-frame plugin. This function does the
// necessary setup in the host before the resource is sent. Call this any
// time you're sending a new URLLoader that the plugin hasn't seen yet.
void PrepareURLLoaderForSendingToPlugin(PP_Resource resource);
static const InterfaceID kInterfaceID = INTERFACE_ID_PPB_URL_LOADER;
private:
// Data associated with callbacks for ReadResponseBody.
struct ReadCallbackInfo;
// Plugin->renderer message handlers.
void OnMsgCreate(PP_Instance instance,
ppapi::HostResource* result);
void OnMsgOpen(const ppapi::HostResource& loader,
const PPB_URLRequestInfo_Data& data,
uint32_t serialized_callback);
void OnMsgFollowRedirect(const ppapi::HostResource& loader,
uint32_t serialized_callback);
void OnMsgGetResponseInfo(const ppapi::HostResource& loader,
ppapi::HostResource* result);
void OnMsgReadResponseBody(const ppapi::HostResource& loader,
int32_t bytes_to_read);
void OnMsgFinishStreamingToFile(const ppapi::HostResource& loader,
uint32_t serialized_callback);
void OnMsgClose(const ppapi::HostResource& loader);
void OnMsgGrantUniversalAccess(const ppapi::HostResource& loader);
// Renderer->plugin message handlers.
void OnMsgUpdateProgress(
const PPBURLLoader_UpdateProgress_Params& params);
void OnMsgReadResponseBodyAck(const ppapi::HostResource& pp_resource,
int32_t result,
const std::string& data);
// Handles callbacks for read complete messages. Takes ownership of the info
// pointer.
void OnReadCallback(int32_t result, ReadCallbackInfo* info);
pp::CompletionCallbackFactory<PPB_URLLoader_Proxy,
ProxyNonThreadSafeRefCount> callback_factory_;
// Valid only in the host, this lazily-initialized pointer indicates the
// URLLoaderTrusted interface.
const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_;
};
} // namespace proxy
} // namespace ppapi
#endif // PPAPI_PPB_URL_LOADER_PROXY_H_
|