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

Side by Side Diff: ppapi/proxy/ppb_url_loader_proxy.h

Issue 8371008: Revert 106717 - Revert 106677 (caused several PPAPI test timeouts, see http://crbug.com/101154) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/ppb_url_loader_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_PPB_URL_LOADER_PROXY_H_ 5 #ifndef PPAPI_PPB_URL_LOADER_PROXY_H_
6 #define PPAPI_PPB_URL_LOADER_PROXY_H_ 6 #define PPAPI_PPB_URL_LOADER_PROXY_H_
7 7
8 #include "ppapi/c/pp_completion_callback.h" 8 #include "ppapi/c/pp_completion_callback.h"
9 #include "ppapi/c/pp_instance.h" 9 #include "ppapi/c/pp_instance.h"
10 #include "ppapi/c/pp_module.h" 10 #include "ppapi/c/pp_module.h"
(...skipping 23 matching lines...) Expand all
34 34
35 static const Info* GetTrustedInfo(); 35 static const Info* GetTrustedInfo();
36 36
37 static PP_Resource CreateProxyResource(PP_Instance instance); 37 static PP_Resource CreateProxyResource(PP_Instance instance);
38 38
39 // URLLoader objects are normally allocated by the Create function, but 39 // URLLoader objects are normally allocated by the Create function, but
40 // they are also provided to PPP_Instance.OnMsgHandleDocumentLoad. This 40 // they are also provided to PPP_Instance.OnMsgHandleDocumentLoad. This
41 // function allows the proxy for DocumentLoad to create the correct plugin 41 // function allows the proxy for DocumentLoad to create the correct plugin
42 // proxied info for the given browser-supplied URLLoader resource ID. 42 // proxied info for the given browser-supplied URLLoader resource ID.
43 static PP_Resource TrackPluginResource( 43 static PP_Resource TrackPluginResource(
44 const ppapi::HostResource& url_loader_resource); 44 const HostResource& url_loader_resource);
45 45
46 // InterfaceProxy implementation. 46 // InterfaceProxy implementation.
47 virtual bool OnMessageReceived(const IPC::Message& msg); 47 virtual bool OnMessageReceived(const IPC::Message& msg);
48 48
49 // URLLoader objects are sent from places other than just URLLoader.Create, 49 // URLLoader objects are sent from places other than just URLLoader.Create,
50 // in particular when doing a full-frame plugin. This function does the 50 // in particular when doing a full-frame plugin. This function does the
51 // necessary setup in the host before the resource is sent. Call this any 51 // necessary setup in the host before the resource is sent. Call this any
52 // time you're sending a new URLLoader that the plugin hasn't seen yet. 52 // time you're sending a new URLLoader that the plugin hasn't seen yet.
53 void PrepareURLLoaderForSendingToPlugin(PP_Resource resource); 53 void PrepareURLLoaderForSendingToPlugin(PP_Resource resource);
54 54
55 static const ApiID kApiID = API_ID_PPB_URL_LOADER; 55 static const ApiID kApiID = API_ID_PPB_URL_LOADER;
56 56
57 private: 57 private:
58 // Data associated with callbacks for ReadResponseBody. 58 // Data associated with callbacks for ReadResponseBody.
59 struct ReadCallbackInfo; 59 struct ReadCallbackInfo;
60 60
61 // Plugin->renderer message handlers. 61 // Plugin->renderer message handlers.
62 void OnMsgCreate(PP_Instance instance, 62 void OnMsgCreate(PP_Instance instance,
63 ppapi::HostResource* result); 63 HostResource* result);
64 void OnMsgOpen(const ppapi::HostResource& loader, 64 void OnMsgOpen(const HostResource& loader,
65 const PPB_URLRequestInfo_Data& data, 65 const PPB_URLRequestInfo_Data& data);
66 uint32_t serialized_callback); 66 void OnMsgFollowRedirect(const HostResource& loader);
67 void OnMsgFollowRedirect(const ppapi::HostResource& loader, 67 void OnMsgGetResponseInfo(const HostResource& loader,
68 uint32_t serialized_callback); 68 HostResource* result);
69 void OnMsgGetResponseInfo(const ppapi::HostResource& loader, 69 void OnMsgReadResponseBody(const HostResource& loader,
70 ppapi::HostResource* result);
71 void OnMsgReadResponseBody(const ppapi::HostResource& loader,
72 int32_t bytes_to_read); 70 int32_t bytes_to_read);
73 void OnMsgFinishStreamingToFile(const ppapi::HostResource& loader, 71 void OnMsgFinishStreamingToFile(const HostResource& loader);
74 uint32_t serialized_callback); 72 void OnMsgClose(const HostResource& loader);
75 void OnMsgClose(const ppapi::HostResource& loader); 73 void OnMsgGrantUniversalAccess(const HostResource& loader);
76 void OnMsgGrantUniversalAccess(const ppapi::HostResource& loader);
77 74
78 // Renderer->plugin message handlers. 75 // Renderer->plugin message handlers.
79 void OnMsgUpdateProgress( 76 void OnMsgUpdateProgress(
80 const PPBURLLoader_UpdateProgress_Params& params); 77 const PPBURLLoader_UpdateProgress_Params& params);
81 void OnMsgReadResponseBodyAck(const ppapi::HostResource& pp_resource, 78 void OnMsgReadResponseBodyAck(const HostResource& host_resource,
82 int32_t result, 79 int32_t result,
83 const std::string& data); 80 const std::string& data);
81 void OnMsgCallbackComplete(const HostResource& host_resource, int32_t result);
84 82
85 // Handles callbacks for read complete messages. Takes ownership of the info 83 // Handles callbacks for read complete messages. Takes ownership of the info
86 // pointer. 84 // pointer.
87 void OnReadCallback(int32_t result, ReadCallbackInfo* info); 85 void OnReadCallback(int32_t result, ReadCallbackInfo* info);
88 86
87 // Handles callback for everything but reads.
88 void OnCallback(int32_t result, const HostResource& resource);
89
89 pp::CompletionCallbackFactory<PPB_URLLoader_Proxy, 90 pp::CompletionCallbackFactory<PPB_URLLoader_Proxy,
90 ProxyNonThreadSafeRefCount> callback_factory_; 91 ProxyNonThreadSafeRefCount> callback_factory_;
91 92
92 // Valid only in the host, this lazily-initialized pointer indicates the 93 // Valid only in the host, this lazily-initialized pointer indicates the
93 // URLLoaderTrusted interface. 94 // URLLoaderTrusted interface.
94 const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_; 95 const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_;
95 }; 96 };
96 97
97 } // namespace proxy 98 } // namespace proxy
98 } // namespace ppapi 99 } // namespace ppapi
99 100
100 #endif // PPAPI_PPB_URL_LOADER_PROXY_H_ 101 #endif // PPAPI_PPB_URL_LOADER_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/ppb_url_loader_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698