| Index: webkit/glue/plugins/plugin_host.cc
|
| diff --git a/webkit/glue/plugins/plugin_host.cc b/webkit/glue/plugins/plugin_host.cc
|
| index b5acda2621e530aefbb4a2ca1b94d96785e509dd..2ecb48ff34e642f3cd74e18c086caab8d8472c16 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;
|
| }
|
|
|