From ac12399c4c8a6c419a8256ba21382ed93920d73b Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Fri, 2 Dec 2011 18:29:31 +0000 Subject: Convert file ref private to use new registration. This removes some manual registration code. It should also make FileRef private work in process, it didn't look like it was being registered for in-process use before. Review URL: http://codereview.chromium.org/8772027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112740 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/proxy/interface_list.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ppapi/proxy/interface_list.cc') diff --git a/ppapi/proxy/interface_list.cc b/ppapi/proxy/interface_list.cc index 4e126a9..af36b88 100644 --- a/ppapi/proxy/interface_list.cc +++ b/ppapi/proxy/interface_list.cc @@ -171,15 +171,18 @@ InterfaceList::InterfaceList() { AddFlashInterfaces(); // PPB (browser) interfaces. + // Do not add more stuff here, they should be added to interface_list*.h + // TODO(brettw) remove these. AddPPB(PPB_FileChooser_Proxy::GetTrustedInfo()); AddPPB(PPB_Instance_Proxy::GetInfoPrivate()); AddPPB(PPB_PDF_Proxy::GetInfo()); AddPPB(PPB_Testing_Proxy::GetInfo()); AddPPB(PPB_URLLoader_Proxy::GetTrustedInfo()); AddPPB(PPB_Var_Deprecated_Proxy::GetInfo()); - AddPPB(PPB_FileRef_Proxy::GetPrivateInfo()); // PPP (plugin) interfaces. + // Do not add more stuff here, they should be added to interface_list*.h + // TODO(brettw) remove these. AddPPP(PPP_Graphics3D_Proxy::GetInfo()); AddPPP(PPP_InputEvent_Proxy::GetInfo()); AddPPP(PPP_Instance_Private_Proxy::GetInfo()); -- cgit v1.1