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

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

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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_url_loader_proxy.h ('k') | ppapi/proxy/ppb_url_response_info_proxy.h » ('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 #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
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
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
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_url_loader_proxy.h ('k') | ppapi/proxy/ppb_url_response_info_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698