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

Unified Diff: src/shared/ppapi_proxy/plugin_instance.cc

Issue 5631003: ppapi_proxy: Make DebugPrintf more usable.... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/shared/ppapi_proxy/plugin_core.cc ('k') | src/shared/ppapi_proxy/plugin_ppp_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/ppapi_proxy/plugin_instance.cc
===================================================================
--- src/shared/ppapi_proxy/plugin_instance.cc (revision 3872)
+++ src/shared/ppapi_proxy/plugin_instance.cc (working copy)
@@ -20,21 +20,21 @@
}
static PP_Var GetWindowObjectThunk(PP_Instance instance) {
- DebugPrintf("PluginInstance::GetWindowObject: instance=%" NACL_PRIx64"\n",
- instance);
+ DebugPrintf("Plugin::PPB_Instance::GetWindowObject: instance=%"
+ NACL_PRIx64"\n", instance);
return GetInstancePointer(instance)->GetWindowObject();
}
static PP_Var GetOwnerElementObjectThunk(PP_Instance instance) {
- DebugPrintf("PluginInstance::GetOwnerElementObject: instance=%"
+ DebugPrintf("Plugin::PPB_Instance::GetOwnerElementObject: instance=%"
NACL_PRIx64 "\n",
instance);
return GetInstancePointer(instance)->GetOwnerElementObject();
}
static PP_Bool BindGraphicsThunk(PP_Instance instance,
- PP_Resource device) {
- DebugPrintf("PluginInstance::BindGraphicsDeviceContext: instance=%"
+ PP_Resource device) {
+ DebugPrintf("Plugin::PPB_Instance::BindGraphicsDeviceContext: instance=%"
NACL_PRIx64 ", device=%" NACL_PRIu64 "\n",
instance, device);
return static_cast<PP_Bool>
@@ -42,7 +42,7 @@
}
static PP_Bool IsFullFrameThunk(PP_Instance instance) {
- DebugPrintf("PluginInstance::IsFullFrame: instance=%" NACL_PRIx64 "\n",
+ DebugPrintf("Plugin::PPB_Instance::IsFullFrame: instance=%" NACL_PRIx64 "\n",
instance);
return static_cast<PP_Bool>(GetInstancePointer(instance)->IsFullFrame());
}
@@ -50,7 +50,7 @@
static PP_Var ExecuteScriptThunk(PP_Instance instance,
PP_Var script,
PP_Var* exception) {
- DebugPrintf("PluginInstance::ExecuteScript: instance=%" NACL_PRIx64"\n",
+ DebugPrintf("Plugin::PPB_Instance::ExecuteScript: instance=%" NACL_PRIx64"\n",
instance);
return GetInstancePointer(instance)->ExecuteScript(script, exception);
}
« no previous file with comments | « src/shared/ppapi_proxy/plugin_core.cc ('k') | src/shared/ppapi_proxy/plugin_ppp_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698