diff options
author | stuartmorgan@google.com <stuartmorgan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 00:13:20 +0000 |
---|---|---|
committer | stuartmorgan@google.com <stuartmorgan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 00:13:20 +0000 |
commit | 2383c9497d4ea626fd4612f979cf81cca5a4dbbe (patch) | |
tree | 0424f0548d3f5213b0adb5ce33fc5cf2ee5812ba /chrome | |
parent | 9911cef2305b438052a2bec494f86847e3a8b01e (diff) | |
download | chromium_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.cc | 2 |
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 } |