summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/npapi/plugin_host.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/plugins/npapi/plugin_host.cc')
-rw-r--r--webkit/plugins/npapi/plugin_host.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/webkit/plugins/npapi/plugin_host.cc b/webkit/plugins/npapi/plugin_host.cc
index 61d8e16..9a42090 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;
}