/external/webkit/Source/WebCore/platform/ |
RuntimeApplicationChecks.cpp | 45 CFStringRef bundleIdentifier = CFBundleGetIdentifier(mainBundle); 46 if (!bundleIdentifier) 50 return CFStringCompare(bundleIdentifier, bundleIdentifierToCompare.get(), 0) == kCFCompareEqualTo;
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebDocumentLoaderMac.mm | 51 NSString *bundleIdentifier = [[NSBundle bundleForClass:[frameLoadDelegate class]] bundleIdentifier]; 53 if ([bundleIdentifier isEqualToString:@"com.apple.AppKit"]) 55 if ([bundleIdentifier isEqualToString:@"com.adobe.Installers.Setup"]) 60 && [[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.adobe.Installers.Setup"];
|
WebPreferences.mm | 120 const char* bundleID = [[[NSBundle mainBundle] bundleIdentifier] UTF8String]; 149 const char* bundleID = [[bundle bundleIdentifier] UTF8String]; [all...] |
WebView.mm | 575 NSString *appName = [[NSBundle mainBundle] bundleIdentifier]; [all...] |
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
NetscapePluginHostManager.h | 47 PassRefPtr<NetscapePluginInstanceProxy> instantiatePlugin(const WTF::String& pluginPath, cpu_type_t pluginArchitecture, const WTF::String& bundleIdentifier, WebHostedNetscapePluginView *, NSString *mimeType, NSArray *attributeKeys, NSArray *attributeValues, NSString *userAgent, NSURL *sourceURL, bool fullFrame, bool isPrivateBrowsingEnabled, bool isAcceleratedCompositingEnabled); 56 NetscapePluginHostProxy* hostForPlugin(const WTF::String& pluginPath, cpu_type_t pluginArchitecture, const WTF::String& bundleIdentifier);
|
NetscapePluginHostManager.mm | 70 NetscapePluginHostProxy* NetscapePluginHostManager::hostForPlugin(const WTF::String& pluginPath, cpu_type_t pluginArchitecture, const String& bundleIdentifier) 94 bool shouldCacheMissingPropertiesAndMethods = bundleIdentifier != "com.macromedia.Flash Player.plugin"; 214 PassRefPtr<NetscapePluginInstanceProxy> NetscapePluginHostManager::instantiatePlugin(const String& pluginPath, cpu_type_t pluginArchitecture, const String& bundleIdentifier, WebHostedNetscapePluginView *pluginView, NSString *mimeType, NSArray *attributeKeys, NSArray *attributeValues, NSString *userAgent, NSURL *sourceURL, bool fullFrame, bool isPrivateBrowsingEnabled, bool isAcceleratedCompositingEnabled) 216 NetscapePluginHostProxy* hostProxy = hostForPlugin(pluginPath, pluginArchitecture, bundleIdentifier); 255 hostProxy = hostForPlugin(pluginPath, pluginArchitecture, bundleIdentifier);
|
WebHostedNetscapePluginView.mm | 115 _proxy = NetscapePluginHostManager::shared().instantiatePlugin([_pluginPackage.get() path], [_pluginPackage.get() pluginHostArchitecture], [_pluginPackage.get() bundleIdentifier], self, _MIMEType.get(), _attributeKeys.get(), _attributeValues.get(), userAgent, _sourceURL.get(),
|
/external/webkit/Source/WebKit2/UIProcess/Plugins/mac/ |
PluginInfoStoreMac.mm | 85 if (loadedPlugin.bundleIdentifier == plugin.bundleIdentifier)
|
PluginProcessProxyMac.mm | 56 if (pluginInfo.bundleIdentifier == "com.apple.QuickTime Plugin.plugin")
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebKitNSStringExtras.h | 60 + (NSString *)_webkit_localCacheDirectoryWithBundleIdentifier:(NSString*)bundleIdentifier;
|
WebKitNSStringExtras.mm | 323 + (NSString *)_webkit_localCacheDirectoryWithBundleIdentifier:(NSString*)bundleIdentifier 340 return [cacheDir stringByAppendingPathComponent:bundleIdentifier];
|
/external/webkit/Source/WebKit/mac/Plugins/ |
WebBasePluginPackage.mm | 343 const String& bundleIdentifier = [self bundleIdentifier]; 344 return bundleIdentifier == QuickTimeCocoaPluginIdentifier || bundleIdentifier == QuickTimeCocoaPluginIdentifier; 349 const String& bundleIdentifier = [self bundleIdentifier]; 350 return bundleIdentifier == JavaCocoaPluginIdentifier || bundleIdentifier == JavaCarbonPluginIdentifier || 458 - (WTF::String)bundleIdentifier
|
WebBasePluginPackage.h | 80 - (WTF::String)bundleIdentifier;
|
WebPluginDatabase.mm | 87 if ([*currentPlugin bundleIdentifier] == [*candidatePlugin bundleIdentifier] && [*candidatePlugin versionNumber] > [*currentPlugin versionNumber])
|
WebBaseNetscapePluginView.mm | 148 if ([[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.apple.dashboard.client"] && 149 [_pluginPackage.get() bundleIdentifier] == "com.apple.QuickTime Plugin.plugin") {
|
WebNetscapePluginPackage.mm | 329 if ([self bundleIdentifier] == "com.lizardtech.NPDjVu") { 698 if ([self bundleIdentifier] != "com.macromedia.Flash Player.plugin")
|
WebNetscapePluginView.mm | [all...] |
/external/webkit/Source/WebKit2/UIProcess/Plugins/ |
PluginInfoStore.h | 55 String bundleIdentifier;
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
WebContextMac.mm | 49 NSString *appName = [[NSBundle mainBundle] bundleIdentifier]; 103 parameters.uiProcessBundleIdentifier = String([[NSBundle mainBundle] bundleIdentifier]);
|
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/mac/ |
NetscapePluginModuleMac.mm | 339 plugin.bundleIdentifier = CFBundleGetIdentifier(bundle.get()); 359 if (plugin.bundleIdentifier == "com.macromedia.Flash Player.plugin") { 367 if (plugin.bundleIdentifier == "com.microsoft.SilverlightPlugin") { 374 if (plugin.bundleIdentifier == "com.apple.ist.ds.appleconnect.webplugin") {
|
/external/webkit/Source/WebKit/mac/History/ |
WebBackForwardList.mm | 214 static bool hackNeeded = [[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.freeverse.bumpercar"] &&
|
/external/webkit/Source/WebKit2/Shared/mac/ |
WebMemorySampler.mac.mm | 100 NSString *appName = [[NSBundle mainBundle] bundleIdentifier];
|
/external/webkit/Tools/WebKitLauncher/ |
main.m | 146 if ([[possibleSafariBundle bundleIdentifier] isEqualToString:@"com.apple.Safari"])
|
/external/webkit/Source/WebCore/platform/network/mac/ |
ResourceHandleMac.mm | 741 return String([[NSBundle mainBundle] bundleIdentifier]); [all...] |
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebEditorClient.mm | 309 if (!WebKitLinkedOnOrAfter(WEBKIT_FIRST_VERSION_WITHOUT_APERTURE_QUIRK) && [[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.apple.Aperture"]) [all...] |