1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
/*
* Copyright (C) 2010 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "config.h"
#import "NetscapePluginModule.h"
#if ENABLE(NETSCAPE_PLUGIN_API)
#import "PluginProcessProxy.h"
#import <WebCore/WebCoreNSStringExtras.h>
#import <wtf/HashSet.h>
#import <wtf/MainThread.h>
using namespace WebCore;
namespace WebKit {
static bool getPluginArchitecture(CFBundleRef bundle, PluginModuleInfo& plugin)
{
RetainPtr<CFArrayRef> pluginArchitecturesArray = adoptCF(CFBundleCopyExecutableArchitectures(bundle));
if (!pluginArchitecturesArray)
return false;
// Turn the array into a set.
HashSet<unsigned> architectures;
for (CFIndex i = 0, numPluginArchitectures = CFArrayGetCount(pluginArchitecturesArray.get()); i < numPluginArchitectures; ++i) {
CFNumberRef number = static_cast<CFNumberRef>(CFArrayGetValueAtIndex(pluginArchitecturesArray.get(), i));
SInt32 architecture;
if (!CFNumberGetValue(number, kCFNumberSInt32Type, &architecture))
continue;
architectures.add(architecture);
}
#ifdef __x86_64__
// We only support 64-bit Intel plug-ins on 64-bit Intel.
if (architectures.contains(kCFBundleExecutableArchitectureX86_64)) {
plugin.pluginArchitecture = CPU_TYPE_X86_64;
return true;
}
// We also support 32-bit Intel plug-ins on 64-bit Intel.
if (architectures.contains(kCFBundleExecutableArchitectureI386)) {
plugin.pluginArchitecture = CPU_TYPE_X86;
return true;
}
#elif defined(__i386__)
// We only support 32-bit Intel plug-ins on 32-bit Intel.
if (architectures.contains(kCFBundleExecutableArchitectureI386)) {
plugin.pluginArchitecture = CPU_TYPE_X86;
return true;
}
#elif defined(__ppc64__)
// We only support 64-bit PPC plug-ins on 64-bit PPC.
if (architectures.contains(kCFBundleExecutableArchitecturePPC64)) {
plugin.pluginArchitecture = CPU_TYPE_POWERPC64;
return true;
}
#elif defined(__ppc__)
// We only support 32-bit PPC plug-ins on 32-bit PPC.
if (architectures.contains(kCFBundleExecutableArchitecturePPC)) {
plugin.pluginArchitecture = CPU_TYPE_POWERPC;
return true;
}
#else
#error "Unhandled architecture"
#endif
return false;
}
static RetainPtr<CFDictionaryRef> contentsOfPropertyListAtURL(CFURLRef propertyListURL)
{
RetainPtr<NSData> propertyListData = adoptNS([[NSData alloc] initWithContentsOfURL:(NSURL *)propertyListURL]);
if (!propertyListData)
return 0;
RetainPtr<CFPropertyListRef> propertyList = adoptCF(CFPropertyListCreateWithData(kCFAllocatorDefault, (CFDataRef)propertyListData.get(), kCFPropertyListImmutable, 0, 0));
if (!propertyList)
return 0;
if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID())
return 0;
return static_cast<CFDictionaryRef>(propertyList.get());
}
static RetainPtr<CFDictionaryRef> getMIMETypesFromPluginBundle(CFBundleRef bundle, const PluginModuleInfo& plugin)
{
CFStringRef propertyListFilename = static_cast<CFStringRef>(CFBundleGetValueForInfoDictionaryKey(bundle, CFSTR("WebPluginMIMETypesFilename")));
if (propertyListFilename) {
RetainPtr<CFStringRef> propertyListPath = adoptCF(CFStringCreateWithFormat(kCFAllocatorDefault, 0, CFSTR("%@/Library/Preferences/%@"), NSHomeDirectory(), propertyListFilename));
RetainPtr<CFURLRef> propertyListURL = adoptCF(CFURLCreateWithFileSystemPath(kCFAllocatorDefault, propertyListPath.get(), kCFURLPOSIXPathStyle, FALSE));
RetainPtr<CFDictionaryRef> propertyList = contentsOfPropertyListAtURL(propertyListURL.get());
#if ENABLE(PLUGIN_PROCESS)
if (!propertyList && PluginProcessProxy::createPropertyListFile(plugin))
propertyList = contentsOfPropertyListAtURL(propertyListURL.get());
#endif
if (!propertyList)
return 0;
return static_cast<CFDictionaryRef>(CFDictionaryGetValue(propertyList.get(), CFSTR("WebPluginMIMETypes")));
}
return static_cast<CFDictionaryRef>(CFBundleGetValueForInfoDictionaryKey(bundle, CFSTR("WebPluginMIMETypes")));
}
static bool getPluginInfoFromPropertyLists(CFBundleRef bundle, PluginModuleInfo& plugin)
{
RetainPtr<CFDictionaryRef> mimeTypes = getMIMETypesFromPluginBundle(bundle, plugin);
if (!mimeTypes || CFGetTypeID(mimeTypes.get()) != CFDictionaryGetTypeID())
return false;
// Get the plug-in name.
CFStringRef pluginName = static_cast<CFStringRef>(CFBundleGetValueForInfoDictionaryKey(bundle, CFSTR("WebPluginName")));
if (pluginName && CFGetTypeID(pluginName) == CFStringGetTypeID())
plugin.info.name = pluginName;
// Get the plug-in description.
CFStringRef pluginDescription = static_cast<CFStringRef>(CFBundleGetValueForInfoDictionaryKey(bundle, CFSTR("WebPluginDescription")));
if (pluginDescription && CFGetTypeID(pluginDescription) == CFStringGetTypeID())
plugin.info.desc = pluginDescription;
// Get the MIME type mapping dictionary.
CFIndex numMimeTypes = CFDictionaryGetCount(mimeTypes.get());
Vector<CFStringRef> mimeTypesVector(numMimeTypes);
Vector<CFDictionaryRef> mimeTypeInfoVector(numMimeTypes);
CFDictionaryGetKeysAndValues(mimeTypes.get(), reinterpret_cast<const void**>(mimeTypesVector.data()), reinterpret_cast<const void**>(mimeTypeInfoVector.data()));
for (CFIndex i = 0; i < numMimeTypes; ++i) {
MimeClassInfo mimeClassInfo;
// If this MIME type is invalid, ignore it.
CFStringRef mimeType = mimeTypesVector[i];
if (!mimeType || CFGetTypeID(mimeType) != CFStringGetTypeID() || CFStringGetLength(mimeType) == 0)
continue;
// If this MIME type doesn't have a valid info dictionary, ignore it.
CFDictionaryRef mimeTypeInfo = mimeTypeInfoVector[i];
if (!mimeTypeInfo || CFGetTypeID(mimeTypeInfo) != CFDictionaryGetTypeID())
continue;
// FIXME: Consider storing disabled MIME types.
CFTypeRef isEnabled = CFDictionaryGetValue(mimeTypeInfo, CFSTR("WebPluginTypeEnabled"));
if (isEnabled) {
if (CFGetTypeID(isEnabled) == CFNumberGetTypeID()) {
int value;
if (!CFNumberGetValue(static_cast<CFNumberRef>(isEnabled), kCFNumberIntType, &value) || !value)
continue;
} else if (CFGetTypeID(isEnabled) == CFBooleanGetTypeID()) {
if (!CFBooleanGetValue(static_cast<CFBooleanRef>(isEnabled)))
continue;
} else
continue;
}
// Get the MIME type description.
CFStringRef mimeTypeDescription = static_cast<CFStringRef>(CFDictionaryGetValue(mimeTypeInfo, CFSTR("WebPluginTypeDescription")));
if (mimeTypeDescription && CFGetTypeID(mimeTypeDescription) != CFStringGetTypeID())
mimeTypeDescription = 0;
mimeClassInfo.type = String(mimeType).lower();
mimeClassInfo.desc = mimeTypeDescription;
// Now get the extensions for this MIME type.
CFIndex numExtensions = 0;
CFArrayRef extensionsArray = static_cast<CFArrayRef>(CFDictionaryGetValue(mimeTypeInfo, CFSTR("WebPluginExtensions")));
if (extensionsArray && CFGetTypeID(extensionsArray) == CFArrayGetTypeID())
numExtensions = CFArrayGetCount(extensionsArray);
for (CFIndex i = 0; i < numExtensions; ++i) {
CFStringRef extension = static_cast<CFStringRef>(CFArrayGetValueAtIndex(extensionsArray, i));
if (!extension || CFGetTypeID(extension) != CFStringGetTypeID())
continue;
// The DivX plug-in lists multiple extensions in a comma separated string instead of using
// multiple array elements in the property list. Work around this here by splitting the
// extension string into components.
Vector<String> extensionComponents;
String(extension).lower().split(',', extensionComponents);
for (size_t i = 0; i < extensionComponents.size(); ++i)
mimeClassInfo.extensions.append(extensionComponents[i]);
}
// Add this MIME type.
plugin.info.mimes.append(mimeClassInfo);
}
return true;
}
#if COMPILER(CLANG)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#endif
class ResourceMap {
public:
explicit ResourceMap(CFBundleRef bundle)
: m_bundle(bundle)
, m_currentResourceFile(CurResFile())
, m_bundleResourceMap(CFBundleOpenBundleResourceMap(m_bundle))
{
UseResFile(m_bundleResourceMap);
}
~ResourceMap()
{
// Close the resource map.
CFBundleCloseBundleResourceMap(m_bundle, m_bundleResourceMap);
// And restore the old resource.
UseResFile(m_currentResourceFile);
}
bool isValid() const { return m_bundleResourceMap != -1; }
private:
CFBundleRef m_bundle;
ResFileRefNum m_currentResourceFile;
ResFileRefNum m_bundleResourceMap;
};
static bool getStringListResource(ResID resourceID, Vector<String>& stringList) {
Handle stringListHandle = Get1Resource('STR#', resourceID);
if (!stringListHandle || !*stringListHandle)
return false;
// Get the string list size.
Size stringListSize = GetHandleSize(stringListHandle);
if (stringListSize < static_cast<Size>(sizeof(UInt16)))
return false;
CFStringEncoding stringEncoding = stringEncodingForResource(stringListHandle);
unsigned char* ptr = reinterpret_cast<unsigned char*>(*stringListHandle);
unsigned char* end = ptr + stringListSize;
// Get the number of strings in the string list.
UInt16 numStrings = *reinterpret_cast<UInt16*>(ptr);
ptr += sizeof(UInt16);
for (UInt16 i = 0; i < numStrings; ++i) {
// We're past the end of the string, bail.
if (ptr >= end)
return false;
// Get the string length.
unsigned char stringLength = *ptr++;
RetainPtr<CFStringRef> cfString = adoptCF(CFStringCreateWithBytesNoCopy(kCFAllocatorDefault, ptr, stringLength, stringEncoding, false, kCFAllocatorNull));
if (!cfString.get())
return false;
stringList.append(cfString.get());
ptr += stringLength;
}
if (ptr != end)
return false;
return true;
}
#if COMPILER(CLANG)
#pragma clang diagnostic pop
#endif
static const ResID PluginNameOrDescriptionStringNumber = 126;
static const ResID MIMEDescriptionStringNumber = 127;
static const ResID MIMEListStringStringNumber = 128;
static bool getPluginInfoFromCarbonResources(CFBundleRef bundle, PluginModuleInfo& plugin)
{
ASSERT(isMainThread());
ResourceMap resourceMap(bundle);
if (!resourceMap.isValid())
return false;
// Get the description and name string list.
Vector<String> descriptionAndName;
if (!getStringListResource(PluginNameOrDescriptionStringNumber, descriptionAndName))
return false;
// Get the MIME types and extensions string list. This list needs to be a multiple of two.
Vector<String> mimeTypesAndExtensions;
if (!getStringListResource(MIMEListStringStringNumber, mimeTypesAndExtensions))
return false;
if (mimeTypesAndExtensions.size() % 2)
return false;
// Now get the MIME type descriptions string list. This string list needs to be the same length as the number of MIME types.
Vector<String> mimeTypeDescriptions;
if (!getStringListResource(MIMEDescriptionStringNumber, mimeTypeDescriptions))
return false;
// Add all MIME types.
for (size_t i = 0; i < mimeTypesAndExtensions.size() / 2; ++i) {
MimeClassInfo mimeClassInfo;
const String& mimeType = mimeTypesAndExtensions[i * 2];
String description;
if (i < mimeTypeDescriptions.size())
description = mimeTypeDescriptions[i];
mimeClassInfo.type = mimeType.lower();
mimeClassInfo.desc = description;
Vector<String> extensions;
mimeTypesAndExtensions[i * 2 + 1].split(',', extensions);
for (size_t i = 0; i < extensions.size(); ++i)
mimeClassInfo.extensions.append(extensions[i].lower());
plugin.info.mimes.append(mimeClassInfo);
}
// Set the description and name if they exist.
if (descriptionAndName.size() > 0)
plugin.info.desc = descriptionAndName[0];
if (descriptionAndName.size() > 1)
plugin.info.name = descriptionAndName[1];
return true;
}
bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginModuleInfo& plugin)
{
RetainPtr<CFURLRef> bundleURL = adoptCF(CFURLCreateWithFileSystemPath(kCFAllocatorDefault, pluginPath.createCFString().get(), kCFURLPOSIXPathStyle, false));
// Try to initialize the bundle.
RetainPtr<CFBundleRef> bundle = adoptCF(CFBundleCreate(kCFAllocatorDefault, bundleURL.get()));
if (!bundle)
return false;
// Check if this bundle is an NPAPI plug-in.
UInt32 packageType = 0;
CFBundleGetPackageInfo(bundle.get(), &packageType, 0);
if (packageType != FOUR_CHAR_CODE('BRPL'))
return false;
// Check that the architecture is valid.
if (!getPluginArchitecture(bundle.get(), plugin))
return false;
plugin.path = pluginPath;
plugin.bundleIdentifier = CFBundleGetIdentifier(bundle.get());
if (CFTypeRef versionTypeRef = CFBundleGetValueForInfoDictionaryKey(bundle.get(), kCFBundleVersionKey)) {
if (CFGetTypeID(versionTypeRef) == CFStringGetTypeID())
plugin.versionString = static_cast<CFStringRef>(versionTypeRef);
}
if (CFTypeRef shortVersionTypeRef = CFBundleGetValueForInfoDictionaryKey(bundle.get(), CFSTR("CFBundleShortVersionString"))) {
if (CFGetTypeID(shortVersionTypeRef) == CFStringGetTypeID())
plugin.shortVersionString = static_cast<CFStringRef>(shortVersionTypeRef);
}
if (CFTypeRef preferencePathTypeRef = CFBundleGetValueForInfoDictionaryKey(bundle.get(), CFSTR("WebPluginPreferencePanePath"))) {
if (CFGetTypeID(preferencePathTypeRef) == CFStringGetTypeID())
plugin.preferencePanePath = static_cast<CFStringRef>(preferencePathTypeRef);
}
// Check that there's valid info for this plug-in.
if (!getPluginInfoFromPropertyLists(bundle.get(), plugin) &&
!getPluginInfoFromCarbonResources(bundle.get(), plugin))
return false;
RetainPtr<CFStringRef> filename = adoptCF(CFURLCopyLastPathComponent(bundleURL.get()));
plugin.info.file = filename.get();
if (plugin.info.name.isNull())
plugin.info.name = plugin.info.file;
if (plugin.info.desc.isNull())
plugin.info.desc = plugin.info.file;
plugin.info.isApplicationPlugin = false;
return true;
}
bool NetscapePluginModule::createPluginMIMETypesPreferences(const String& pluginPath)
{
RetainPtr<CFURLRef> bundleURL = adoptCF(CFURLCreateWithFileSystemPath(kCFAllocatorDefault, pluginPath.createCFString().get(), kCFURLPOSIXPathStyle, false));
RetainPtr<CFBundleRef> bundle = adoptCF(CFBundleCreate(kCFAllocatorDefault, bundleURL.get()));
if (!bundle)
return false;
if (!CFBundleLoadExecutable(bundle.get()))
return false;
void (*createPluginMIMETypesPreferences)(void) = reinterpret_cast<void (*)(void)>(CFBundleGetFunctionPointerForName(bundle.get(), CFSTR("BP_CreatePluginMIMETypesPreferences")));
if (!createPluginMIMETypesPreferences)
return false;
createPluginMIMETypesPreferences();
return true;
}
// FIXME: This doesn't need to be platform-specific.
class PluginVersion {
public:
static PluginVersion parse(const String& versionString);
bool isLessThan(unsigned componentA) const;
bool isValid() const { return !m_versionComponents.isEmpty(); }
private:
PluginVersion()
{
}
Vector<unsigned, 4> m_versionComponents;
};
PluginVersion PluginVersion::parse(const String& versionString)
{
PluginVersion version;
Vector<String> versionStringComponents;
versionString.split(".", versionStringComponents);
for (size_t i = 0; i < versionStringComponents.size(); ++i) {
bool successfullyParsed = false;
unsigned versionComponent = versionStringComponents[i].toUInt(&successfullyParsed);
if (!successfullyParsed)
return PluginVersion();
version.m_versionComponents.append(versionComponent);
}
return version;
}
bool PluginVersion::isLessThan(unsigned componentA) const
{
ASSERT(isValid());
return m_versionComponents[0] < componentA;
}
void NetscapePluginModule::determineQuirks()
{
PluginModuleInfo plugin;
if (!getPluginInfo(m_pluginPath, plugin))
return;
if (plugin.bundleIdentifier == "com.macromedia.Flash Player.plugin") {
// Flash requires that the return value of getprogname() be "WebKitPluginHost".
m_pluginQuirks.add(PluginQuirks::PrognameShouldBeWebKitPluginHost);
// Flash supports snapshotting.
m_pluginQuirks.add(PluginQuirks::SupportsSnapshotting);
// Flash returns a retained Core Animation layer.
m_pluginQuirks.add(PluginQuirks::ReturnsRetainedCoreAnimationLayer);
// Flash has a bug where NSExceptions can be released too early.
m_pluginQuirks.add(PluginQuirks::LeakAllThrownNSExceptions);
}
if (plugin.bundleIdentifier == "com.microsoft.SilverlightPlugin") {
// Silverlight doesn't explicitly opt into transparency, so we'll do it whenever
// there's a 'background' attribute that's set to a transparent color.
m_pluginQuirks.add(PluginQuirks::MakeOpaqueUnlessTransparentSilverlightBackgroundAttributeExists);
// Silverlight has a workaround for a leak in Safari 2. This workaround is
// applied when the user agent does not contain "Version/3" so we append it
// at the end of the user agent.
m_pluginQuirks.add(PluginQuirks::AppendVersion3UserAgent);
PluginVersion pluginVersion = PluginVersion::parse(plugin.versionString);
if (pluginVersion.isValid()) {
if (pluginVersion.isLessThan(4)) {
// Versions of Silverlight prior to 4 don't retain the scriptable NPObject.
m_pluginQuirks.add(PluginQuirks::ReturnsNonRetainedScriptableNPObject);
}
}
}
if (plugin.bundleIdentifier == "com.apple.ist.ds.appleconnect.webplugin") {
// <rdar://problem/8440903>: AppleConnect has a bug where it does not
// understand the parameter names specified in the <object> element that
// embeds its plug-in.
m_pluginQuirks.add(PluginQuirks::WantsLowercaseParameterNames);
#ifndef NP_NO_QUICKDRAW
// The AppleConnect plug-in uses QuickDraw but doesn't paint or receive events
// so we'll allow it to be instantiated even though we don't support QuickDraw.
m_pluginQuirks.add(PluginQuirks::AllowHalfBakedQuickDrawSupport);
#endif
}
#ifndef NP_NO_QUICKDRAW
if (plugin.bundleIdentifier == "com.microsoft.sharepoint.browserplugin") {
// The Microsoft SharePoint plug-in uses QuickDraw but doesn't paint or receive events
// so we'll allow it to be instantiated even though we don't support QuickDraw.
m_pluginQuirks.add(PluginQuirks::AllowHalfBakedQuickDrawSupport);
}
if (plugin.bundleIdentifier == "com.jattesaker.macid2.NPPlugin") {
// The BankID plug-in uses QuickDraw but doesn't paint or receive events
// so we'll allow it to be instantiated even though we don't support QuickDraw.
m_pluginQuirks.add(PluginQuirks::AllowHalfBakedQuickDrawSupport);
}
#endif
if (plugin.bundleIdentifier == "com.adobe.acrobat.pdfviewerNPAPI") {
// The Adobe Reader plug-in wants wheel events.
m_pluginQuirks.add(PluginQuirks::WantsWheelEvents);
}
}
} // namespace WebKit
#endif // ENABLE(NETSCAPE_PLUGIN_API)
|