summaryrefslogtreecommitdiffstats
path: root/chrome/browser/plugin_service.cc
diff options
context:
space:
mode:
authormpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-07 19:26:41 +0000
committermpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-07 19:26:41 +0000
commit4f9cd41c22af611e92609757fdcb3a5de01c3752 (patch)
treea30616f826e7866c41d76e847c531b6f10be2dab /chrome/browser/plugin_service.cc
parent03082a6536bb152e8391b66a692c092d5d1bd07d (diff)
downloadchromium_src-4f9cd41c22af611e92609757fdcb3a5de01c3752.zip
chromium_src-4f9cd41c22af611e92609757fdcb3a5de01c3752.tar.gz
chromium_src-4f9cd41c22af611e92609757fdcb3a5de01c3752.tar.bz2
Revert "Temporary CL to debug test failure on the buildbot."
This reverts commit 5c19b0409f047111de901755b5670efa5a2d4e8c. Review URL: http://codereview.chromium.org/1517020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43863 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_service.cc')
-rw-r--r--chrome/browser/plugin_service.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/browser/plugin_service.cc b/chrome/browser/plugin_service.cc
index de7e744..f16108d 100644
--- a/chrome/browser/plugin_service.cc
+++ b/chrome/browser/plugin_service.cc
@@ -1,8 +1,6 @@
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include <iostream>
-using namespace std;
#include "build/build_config.h"
@@ -219,8 +217,6 @@ PluginProcessHost* PluginService::FindOrStartPluginProcess(
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
PluginProcessHost *plugin_host = FindPluginProcess(plugin_path);
- std::cout << "Starting plugin: " << plugin_path.ToWStringHack()
- << " = " << plugin_host << endl;
if (plugin_host)
return plugin_host;
@@ -231,8 +227,6 @@ PluginProcessHost* PluginService::FindOrStartPluginProcess(
return NULL;
}
- std::cout << "Starting plugin info: " << info.name << endl;
-
// This plugin isn't loaded by any plugin process, so create a new process.
plugin_host = new PluginProcessHost();
if (!plugin_host->Init(info, ui_locale_)) {
@@ -303,7 +297,6 @@ void PluginService::OnWaitableEventSignaled(
static void ForceShutdownPlugin(const FilePath& plugin_path) {
PluginProcessHost* plugin =
PluginService::GetInstance()->FindPluginProcess(plugin_path);
- std::cout << "Shutting down:" << plugin << endl;
if (plugin)
plugin->ForceShutdown();
}