Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
BUILD FIX: <http://webkit.org/b/44285> Fix compilation with NETSCAPE_…
…PLUGIN_API disabled

Reviewed by Joseph Pecoraro.

* plugins/PluginView.cpp: Added #if ENABLE(NETSCAPE_PLUGIN_API)
and #endif macros around the source to fix the Qt Linux Release
Minimal build.

Canonical link: https://commits.webkit.org/56487@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@65707 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
ddkilzer committed Aug 19, 2010
1 parent c296659 commit c81d4f6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions WebCore/ChangeLog
@@ -1,3 +1,13 @@
2010-08-19 David Kilzer <ddkilzer@apple.com>

BUILD FIX: <http://webkit.org/b/44285> Fix compilation with NETSCAPE_PLUGIN_API disabled

Reviewed by Joseph Pecoraro.

* plugins/PluginView.cpp: Added #if ENABLE(NETSCAPE_PLUGIN_API)
and #endif macros around the source to fix the Qt Linux Release
Minimal build.

2010-08-19 Stephen White <senorblanco@chromium.org>

Reviewed by Kenneth Russell.
Expand Down
4 changes: 4 additions & 0 deletions WebCore/plugins/PluginView.cpp
Expand Up @@ -81,6 +81,8 @@ using JSC::JSValue;
using JSC::UString;
#endif

#if ENABLE(NETSCAPE_PLUGIN_API)

using std::min;

using namespace WTF;
Expand Down Expand Up @@ -1393,3 +1395,5 @@ void PluginView::privateBrowsingStateChanged(bool privateBrowsingEnabled)
}

} // namespace WebCore

#endif // ENABLE(NETSCAPE_PLUGIN_API)

0 comments on commit c81d4f6

Please sign in to comment.