Index: content/renderer/renderer_main_platform_delegate_mac.mm |
diff --git a/content/renderer/renderer_main_platform_delegate_mac.mm b/content/renderer/renderer_main_platform_delegate_mac.mm |
index e7cf9ffa4cdb7543858a5aaf55d1a7dd6537aa91..e0ce3f0223e413a3aa4e3fca52486c9c9413bbcd 100644 |
--- a/content/renderer/renderer_main_platform_delegate_mac.mm |
+++ b/content/renderer/renderer_main_platform_delegate_mac.mm |
@@ -127,7 +127,7 @@ bool RendererMainPlatformDelegate::InitSandboxTests(bool no_sandbox) { |
} |
bool RendererMainPlatformDelegate::EnableSandbox() { |
- // http://openradar.appspot.com/radar?id=1156410 is fixed on OS X 10.9+. |
+ // rdar://9251340 http://openradar.me/9251340 |
// See http://crbug.com/31225 and http://crbug.com/152566 |
// To check if this is broken: |
// 1. Enable Multi language input (simplified chinese) |
@@ -140,8 +140,8 @@ bool RendererMainPlatformDelegate::EnableSandbox() { |
// and then kill that pid to make it go away.) |
// |
// Chinese Handwriting was introduced in 10.6 and is confirmed broken on |
- // 10.6, 10.7, and 10.8. It's reportedly fixed on 10.9. |
- bool needs_ime_hack = !base::mac::IsOSLaterThanMountainLion_DontCallThis(); |
+ // 10.6, 10.7, and 10.8. It's fixed on 10.9. |
+ bool needs_ime_hack = !base::mac::IsOSMavericksOrLater(); |
Mark Mentovai
2013/10/01 18:30:59
IsOSMountainLionOrEarlier() reads better because i
Avi (use Gerrit)
2013/10/01 19:24:22
Done.
|
if (needs_ime_hack) { |
mach_error_t err = mach_override_ptr( |