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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc

Issue 8840007: GetDocumentURL is added to PPB_Testing_Dev. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed codereview issues. Created 9 years 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
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 // Implements the untrusted side of the PPB_GetInterface method. 5 // Implements the untrusted side of the PPB_GetInterface method.
6 6
7 #include "native_client/src/shared/ppapi_proxy/plugin_globals.h" 7 #include "native_client/src/shared/ppapi_proxy/plugin_globals.h"
8 #include <stdlib.h> 8 #include <stdlib.h>
9 #include <string.h> 9 #include <string.h>
10 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_audio.h" 10 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_audio.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 PluginInputEvent::GetMouseInterface1_1(), true }, 78 PluginInputEvent::GetMouseInterface1_1(), true },
79 { PPB_MOUSELOCK_INTERFACE, PluginMouseLock::GetInterface(), true }, 79 { PPB_MOUSELOCK_INTERFACE, PluginMouseLock::GetInterface(), true },
80 { PPB_OPENGLES2_INTERFACE, PluginGraphics3D::GetOpenGLESInterface(), 80 { PPB_OPENGLES2_INTERFACE, PluginGraphics3D::GetOpenGLESInterface(),
81 true }, 81 true },
82 { PPB_PDF_INTERFACE, PluginPDF::GetInterface(), true }, 82 { PPB_PDF_INTERFACE, PluginPDF::GetInterface(), true },
83 { PPB_SCROLLBAR_DEV_INTERFACE, PluginScrollbar::GetInterface(), true }, 83 { PPB_SCROLLBAR_DEV_INTERFACE, PluginScrollbar::GetInterface(), true },
84 { PPB_TCPSOCKET_PRIVATE_INTERFACE, PluginTCPSocketPrivate::GetInterface(), 84 { PPB_TCPSOCKET_PRIVATE_INTERFACE, PluginTCPSocketPrivate::GetInterface(),
85 true }, 85 true },
86 { PPB_TESTING_DEV_INTERFACE_0_7, PluginTesting::GetInterface(), true }, 86 { PPB_TESTING_DEV_INTERFACE_0_7, PluginTesting::GetInterface(), true },
87 { PPB_TESTING_DEV_INTERFACE_0_8, PluginTesting::GetInterface(), true }, 87 { PPB_TESTING_DEV_INTERFACE_0_8, PluginTesting::GetInterface(), true },
88 { PPB_TESTING_DEV_INTERFACE_0_9, PluginTesting::GetInterface(), true },
88 { PPB_UDPSOCKET_PRIVATE_INTERFACE, PluginUDPSocketPrivate::GetInterface(), 89 { PPB_UDPSOCKET_PRIVATE_INTERFACE, PluginUDPSocketPrivate::GetInterface(),
89 true }, 90 true },
90 { PPB_URLLOADER_INTERFACE, PluginURLLoader::GetInterface(), true }, 91 { PPB_URLLOADER_INTERFACE, PluginURLLoader::GetInterface(), true },
91 { PPB_URLREQUESTINFO_INTERFACE, PluginURLRequestInfo::GetInterface(), true }, 92 { PPB_URLREQUESTINFO_INTERFACE, PluginURLRequestInfo::GetInterface(), true },
92 { PPB_URLRESPONSEINFO_INTERFACE, PluginURLResponseInfo::GetInterface(), 93 { PPB_URLRESPONSEINFO_INTERFACE, PluginURLResponseInfo::GetInterface(),
93 true }, 94 true },
94 { PPB_VAR_INTERFACE, PluginVar::GetInterface(), true }, 95 { PPB_VAR_INTERFACE, PluginVar::GetInterface(), true },
95 { PPB_VAR_INTERFACE_1_0, PluginVar::GetInterface1_0(), true }, 96 { PPB_VAR_INTERFACE_1_0, PluginVar::GetInterface1_0(), true },
96 { PPB_WHEEL_INPUT_EVENT_INTERFACE, PluginInputEvent::GetWheelInterface(), 97 { PPB_WHEEL_INPUT_EVENT_INTERFACE, PluginInputEvent::GetWheelInterface(),
97 true }, 98 true },
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 interface_name, NaClSrpcErrorString(srpc_result)); 135 interface_name, NaClSrpcErrorString(srpc_result));
135 if (srpc_result != NACL_SRPC_RESULT_OK || !browser_exports_interface) { 136 if (srpc_result != NACL_SRPC_RESULT_OK || !browser_exports_interface) {
136 interface_map[index].ppb_interface = NULL; 137 interface_map[index].ppb_interface = NULL;
137 ppb_interface = NULL; 138 ppb_interface = NULL;
138 } 139 }
139 interface_map[index].needs_browser_check = false; 140 interface_map[index].needs_browser_check = false;
140 return ppb_interface; 141 return ppb_interface;
141 } 142 }
142 143
143 } // namespace ppapi_proxy 144 } // namespace ppapi_proxy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698