Index: webkit/glue/plugins/plugin_host.cc |
diff --git a/webkit/glue/plugins/plugin_host.cc b/webkit/glue/plugins/plugin_host.cc |
index 2cc2933055ca38b0252aed48500077402eddc791..8338b2a1a2bb2a18e3f53751f513952fd5d8985a 100644 |
--- a/webkit/glue/plugins/plugin_host.cc |
+++ b/webkit/glue/plugins/plugin_host.cc |
@@ -777,14 +777,7 @@ NPError NPN_GetValue(NPP id, NPNVariable variable, void *value) { |
case NPNVSupportsWindowless: |
{ |
NPBool* supports_windowless = reinterpret_cast<NPBool*>(value); |
-#if defined(OS_LINUX) |
- // TODO(deanm): Remove me once windowless plugins work on Linux. Right now |
- // it's better to tell the plugin we don't support windowless, then have it |
- // try and fail. |
- *supports_windowless = FALSE; |
-#else |
*supports_windowless = TRUE; |
-#endif |
rv = NPERR_NO_ERROR; |
break; |
} |