OLD | NEW |
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 #include "ppapi/proxy/ppb_url_loader_proxy.h" | 5 #include "ppapi/proxy/ppb_url_loader_proxy.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <deque> | 8 #include <deque> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 | 381 |
382 // static | 382 // static |
383 PP_Resource PPB_URLLoader_Proxy::TrackPluginResource( | 383 PP_Resource PPB_URLLoader_Proxy::TrackPluginResource( |
384 const HostResource& url_loader_resource) { | 384 const HostResource& url_loader_resource) { |
385 return (new URLLoader(url_loader_resource))->GetReference(); | 385 return (new URLLoader(url_loader_resource))->GetReference(); |
386 } | 386 } |
387 | 387 |
388 // static | 388 // static |
389 const InterfaceProxy::Info* PPB_URLLoader_Proxy::GetTrustedInfo() { | 389 const InterfaceProxy::Info* PPB_URLLoader_Proxy::GetTrustedInfo() { |
390 static const Info info = { | 390 static const Info info = { |
391 thunk::GetPPB_URLLoaderTrusted_Thunk(), | 391 thunk::GetPPB_URLLoaderTrusted_0_3_Thunk(), |
392 PPB_URLLOADERTRUSTED_INTERFACE, | 392 PPB_URLLOADERTRUSTED_INTERFACE_0_3, |
393 API_ID_NONE, // URL_LOADER is the canonical one. | 393 API_ID_NONE, // URL_LOADER is the canonical one. |
394 false, | 394 false, |
395 &CreateURLLoaderProxy | 395 &CreateURLLoaderProxy |
396 }; | 396 }; |
397 return &info; | 397 return &info; |
398 } | 398 } |
399 | 399 |
400 // static | 400 // static |
401 PP_Resource PPB_URLLoader_Proxy::CreateProxyResource(PP_Instance pp_instance) { | 401 PP_Resource PPB_URLLoader_Proxy::CreateProxyResource(PP_Instance pp_instance) { |
402 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(pp_instance); | 402 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(pp_instance); |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 } | 601 } |
602 | 602 |
603 void PPB_URLLoader_Proxy::OnCallback(int32_t result, | 603 void PPB_URLLoader_Proxy::OnCallback(int32_t result, |
604 const HostResource& resource) { | 604 const HostResource& resource) { |
605 dispatcher()->Send(new PpapiMsg_PPBURLLoader_CallbackComplete( | 605 dispatcher()->Send(new PpapiMsg_PPBURLLoader_CallbackComplete( |
606 API_ID_PPB_URL_LOADER, resource, result)); | 606 API_ID_PPB_URL_LOADER, resource, result)); |
607 } | 607 } |
608 | 608 |
609 } // namespace proxy | 609 } // namespace proxy |
610 } // namespace ppapi | 610 } // namespace ppapi |
OLD | NEW |