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

Unified Diff: components/nacl/renderer/plugin/plugin.cc

Issue 1631413002: NaCl cleanup: Remove not-very-useful debug logging in the plugin code (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 4 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 side-by-side diff with in-line comments
Download patch
Index: components/nacl/renderer/plugin/plugin.cc
diff --git a/components/nacl/renderer/plugin/plugin.cc b/components/nacl/renderer/plugin/plugin.cc
index 85c3bafa6ba2e384ed10e7161426d8907de58b60..2635fbb74a380369b9d6f518aac5835a4e811a05 100644
--- a/components/nacl/renderer/plugin/plugin.cc
+++ b/components/nacl/renderer/plugin/plugin.cc
@@ -28,15 +28,9 @@ void NoOpCallback(void* user_data, int32_t result) {
namespace plugin {
void Plugin::ShutDownSubprocesses() {
- PLUGIN_PRINTF(("Plugin::ShutDownSubprocesses (this=%p)\n",
- static_cast<void*>(this)));
-
// Shut down service runtime. This must be done before all other calls so
// they don't block forever when waiting for the upcall thread to exit.
main_subprocess_.Shutdown();
-
- PLUGIN_PRINTF(("Plugin::ShutDownSubprocess (this=%p, return)\n",
- static_cast<void*>(this)));
}
void Plugin::StartSelLdr(ServiceRuntime* service_runtime,
@@ -164,8 +158,6 @@ void Plugin::NexeFileDidOpen(int32_t pp_error) {
}
void Plugin::BitcodeDidTranslate(int32_t pp_error) {
- PLUGIN_PRINTF(("Plugin::BitcodeDidTranslate (pp_error=%" NACL_PRId32 ")\n",
- pp_error));
if (pp_error != PP_OK) {
// Error should have been reported by pnacl. Just return.
return;
@@ -185,8 +177,6 @@ void Plugin::BitcodeDidTranslate(int32_t pp_error) {
}
void Plugin::NaClManifestFileDidOpen(int32_t pp_error) {
- PLUGIN_PRINTF(("Plugin::NaClManifestFileDidOpen (pp_error=%"
- NACL_PRId32 ")\n", pp_error));
if (pp_error != PP_OK)
return;
« no previous file with comments | « components/nacl/renderer/plugin/module_ppapi.cc ('k') | components/nacl/renderer/plugin/pnacl_coordinator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698