summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorstuartmorgan@google.com <stuartmorgan@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-23 00:13:20 +0000
committerstuartmorgan@google.com <stuartmorgan@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-23 00:13:20 +0000
commit2383c9497d4ea626fd4612f979cf81cca5a4dbbe (patch)
tree0424f0548d3f5213b0adb5ce33fc5cf2ee5812ba /chrome
parent9911cef2305b438052a2bec494f86847e3a8b01e (diff)
downloadchromium_src-2383c9497d4ea626fd4612f979cf81cca5a4dbbe.zip
chromium_src-2383c9497d4ea626fd4612f979cf81cca5a4dbbe.tar.gz
chromium_src-2383c9497d4ea626fd4612f979cf81cca5a4dbbe.tar.bz2
Remove the NOTIMPLEMENTED from IsDefaultPluginEnabled for Mac
BUG=17392 TEST=Less console spew on test bots. Review URL: http://codereview.chromium.org/155881 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21351 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/plugin/plugin_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/plugin/plugin_thread.cc b/chrome/plugin/plugin_thread.cc
index a595776..da5c68c 100644
--- a/chrome/plugin/plugin_thread.cc
+++ b/chrome/plugin/plugin_thread.cc
@@ -197,7 +197,7 @@ bool IsDefaultPluginEnabled() {
// http://code.google.com/p/chromium/issues/detail?id=10952
return false;
#elif defined(OS_MACOSX)
- NOTIMPLEMENTED();
+ // http://code.google.com/p/chromium/issues/detail?id=17392
return false;
#endif
}