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:31:47 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-25 20:31:47 +0000
commit78c3a37c716807e8f50444da64d6506632e13669 (patch)
tree956e70a11f6eb95be5a0a9e27c598816d481826f /chrome/common/chrome_plugin_lib.cc
parent68ac3a05284cd246589a38843f2ba5b20ed5db72 (diff)
downloadchromium_src-78c3a37c716807e8f50444da64d6506632e13669.zip
chromium_src-78c3a37c716807e8f50444da64d6506632e13669.tar.gz
chromium_src-78c3a37c716807e8f50444da64d6506632e13669.tar.bz2
Fix/punt on a bunch of NOTIMPLEMENTEDs.
Review URL: http://codereview.chromium.org/53065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12489 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 7fbca70..40a0c76 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)
+#if defined(OS_WIN) || defined(OS_LINUX)
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();
+ NOTIMPLEMENTED() << " -- gears loading code.";
return false;
#else
DCHECK(module_ == 0);