[Webkit-unassigned] [Bug 114943] PluginDatabase: add plugin directory for the BlackBerry port.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Apr 22 02:46:25 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=114943





--- Comment #2 from Carlos Garcia Campos <cgarcia at igalia.com>  2013-04-22 02:44:44 PST ---
(From update of attachment 199008)
View in context: https://bugs.webkit.org/attachment.cgi?id=199008&action=review

> Source/WebCore/plugins/PluginDatabase.cpp:398
> -#if defined(XP_UNIX)
> +#if PLATFORM(BLACKBERRY)
> +    paths.append(BlackBerry::Platform::Settings::instance()->applicationPluginDirectory().c_str());
> +#elif defined(XP_UNIX)

This is tricky because XP_UNIX is defined for BlackBerry port. Maybe we could do something like:

#if defined(XP_UNIX) && !PLATFORM(BLACKBERRY)
....
#elif PLATFORM(BLACKBERRY)
...

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list