diff options
Diffstat (limited to 'WebCore/platform/mac/RuntimeApplicationChecks.mm')
-rw-r--r-- | WebCore/platform/mac/RuntimeApplicationChecks.mm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/WebCore/platform/mac/RuntimeApplicationChecks.mm b/WebCore/platform/mac/RuntimeApplicationChecks.mm index bcc1dc9..7fe8378 100644 --- a/WebCore/platform/mac/RuntimeApplicationChecks.mm +++ b/WebCore/platform/mac/RuntimeApplicationChecks.mm @@ -52,5 +52,17 @@ bool applicationIsAdobeInstaller() static bool isAdobeInstaller = [[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.adobe.Installers.Setup"]; return isAdobeInstaller; } + +bool applicationIsAOLInstantMessenger() +{ + static bool isAOLInstantMessenger = [[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.aol.aim.desktop"]; + return isAOLInstantMessenger; +} + +bool applicationIsMicrosoftMyDay() +{ + static bool isMicrosoftMyDay = [[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.microsoft.myday"]; + return isMicrosoftMyDay; +} } // namespace WebCore |