Index: webkit/plugins/npapi/plugin_host.cc |
diff --git a/webkit/plugins/npapi/plugin_host.cc b/webkit/plugins/npapi/plugin_host.cc |
index 61d8e1679b039d5b5b5ecf79c5c4b71ad94e5d65..9a420908ce4afeb241b87f4e0215650aaad59aec 100644 |
--- a/webkit/plugins/npapi/plugin_host.cc |
+++ b/webkit/plugins/npapi/plugin_host.cc |
@@ -838,10 +838,9 @@ NPError NPN_GetValue(NPP id, NPNVariable variable, void* value) { |
break; |
} |
case NPNVsupportsUpdatedCocoaTextInputBool: { |
- // We support the clarifications to the Cocoa IME event spec, but since |
- // IME currently only works on 10.6, only answer true there. |
+ // We support the clarifications to the Cocoa IME event spec. |
NPBool* supports_update = reinterpret_cast<NPBool*>(value); |
- *supports_update = base::mac::IsOSSnowLeopardOrLater(); |
+ *supports_update = true; |
rv = NPERR_NO_ERROR; |
break; |
} |