diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-07 22:52:21 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-07 22:52:21 +0000 |
commit | 710e98838dcc6a98a08c74614ed58df4de71c5f1 (patch) | |
tree | 52402a8dd6be7310683a833431d4bfe973331a4d /webkit/glue/plugins | |
parent | 3f543929ad15fa6c644808d4ba61b758bc12bbe7 (diff) | |
download | chromium_src-710e98838dcc6a98a08c74614ed58df4de71c5f1.zip chromium_src-710e98838dcc6a98a08c74614ed58df4de71c5f1.tar.gz chromium_src-710e98838dcc6a98a08c74614ed58df4de71c5f1.tar.bz2 |
Disable NPAPIIncognitoTester.PrivateEnabled test because it's flaky.
TBR=jam
Review URL: http://codereview.chromium.org/149289
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20098 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins')
-rw-r--r-- | webkit/glue/plugins/test/plugin_client.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/plugins/test/plugin_client.cc b/webkit/glue/plugins/test/plugin_client.cc index bcad2a8..39e1fae 100644 --- a/webkit/glue/plugins/test/plugin_client.cc +++ b/webkit/glue/plugins/test/plugin_client.cc @@ -149,8 +149,11 @@ NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, new_test = new NPAPIClient::ExecuteJavascriptPopupWindowTargetPluginTest( instance, NPAPIClient::PluginClient::HostFunctions()); } else if (test_name == "private") { +// http://code.google.com/p/chromium/issues/detail?id=16149 +#if 0 new_test = new NPAPIClient::PrivateTest(instance, NPAPIClient::PluginClient::HostFunctions()); +#endif #if defined(OS_WIN) // TODO(port): plugin_windowed_test.*. } else if (test_name == "hidden_plugin" || |