summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_plugin_lib.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-25 20:55:42 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-25 20:55:42 +0000
commitf2f7b4ad1909cdffae5c2c63595bd5bec8151dad (patch)
tree7b8950e08956f10510be8a8cbbbcc5f1fa88ba4e /chrome/common/chrome_plugin_lib.cc
parentc6629d5cebc2cbfac52f81fd88b9039df4281ac2 (diff)
downloadchromium_src-f2f7b4ad1909cdffae5c2c63595bd5bec8151dad.zip
chromium_src-f2f7b4ad1909cdffae5c2c63595bd5bec8151dad.tar.gz
chromium_src-f2f7b4ad1909cdffae5c2c63595bd5bec8151dad.tar.bz2
Revert "Fix/punt on a bunch of NOTIMPLEMENTEDs."
This reverts commit r12489. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12492 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_plugin_lib.cc')
-rw-r--r--chrome/common/chrome_plugin_lib.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/chrome_plugin_lib.cc b/chrome/common/chrome_plugin_lib.cc
index 40a0c76..7fbca70 100644
--- a/chrome/common/chrome_plugin_lib.cc
+++ b/chrome/common/chrome_plugin_lib.cc
@@ -122,7 +122,7 @@ void ChromePluginLib::RegisterPluginsWithNPAPI() {
return;
// Note: we can only access the NPAPI list because the PluginService has done
// the locking for us. We should not touch it anywhere else.
-#if defined(OS_WIN) || defined(OS_LINUX)
+#if defined(OS_WIN)
NPAPI::PluginList::AddExtraPluginPath(path);
#else
// TODO(port): plugins not yet implemented
@@ -255,7 +255,7 @@ int ChromePluginLib::CP_Test(void* param) {
bool ChromePluginLib::Load() {
#if !defined(OS_WIN)
// TODO(port): plugins not yet implemented
- NOTIMPLEMENTED() << " -- gears loading code.";
+ NOTIMPLEMENTED();
return false;
#else
DCHECK(module_ == 0);