+2007-05-03 Adele Peterson <adele@apple.com>
+
+ Use BUILDING_ON_TIGER.
+
+ * page/mac/FrameMac.mm: (WebCore::Frame::setUseSecureKeyboardEntry):
+
2007-05-03 Brady Eidson <beidson@apple.com>
Reviewed by Darin
return;
if (enable) {
EnableSecureEventInput();
-#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4
+#ifdef BUILDING_ON_TIGER
KeyScript(enableRomanKeyboardsOnly);
#else
CFArrayRef inputSources = TISCreateASCIICapableInputSourceList();
#endif
} else {
DisableSecureEventInput();
-#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4
+#ifdef BUILDING_ON_TIGER
KeyScript(smKeyEnableKybds);
#else
TSMRemoveDocumentProperty(TSMGetActiveDocument(), kTSMDocumentEnabledInputSourcesPropertyTag);