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

Unified Diff: ppapi/proxy/resource_creation_proxy.cc

Issue 23453025: Refactor PPB_NetworkMonitor_Private interface to use CompletionCallback. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.h ('k') | ppapi/shared_impl/resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/resource_creation_proxy.cc
diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc
index 88f99e325a58f26cd94407b5288a1e31c225f905..5d5b2ecdfe6f5ec7ee0e6eeb0210d8420350e9b3 100644
--- a/ppapi/proxy/resource_creation_proxy.cc
+++ b/ppapi/proxy/resource_creation_proxy.cc
@@ -296,12 +296,9 @@ PP_Resource ResourceCreationProxy::CreateNetAddressFromNetAddressPrivate(
private_addr))->GetReference();
}
-PP_Resource ResourceCreationProxy::CreateNetworkMonitor(
- PP_Instance instance,
- PPB_NetworkMonitor_Callback callback,
- void* user_data) {
- return PPB_NetworkMonitor_Private_Proxy::CreateProxyResource(
- instance, callback, user_data);
+PP_Resource ResourceCreationProxy::CreateNetworkMonitorPrivate(
+ PP_Instance instance) {
+ return PPB_NetworkMonitor_Private_Proxy::CreateProxyResource(instance);
}
PP_Resource ResourceCreationProxy::CreatePrinting(PP_Instance instance) {
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.h ('k') | ppapi/shared_impl/resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698