| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/test/test_timeouts.h" | 7 #include "base/test/test_timeouts.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "content/browser/plugin_service.h" | 9 #include "content/browser/plugin_service.h" |
| 10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) | 453 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) |
| 454 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) | 454 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) |
| 455 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) | 455 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 456 TEST_PPAPI_IN_PROCESS(Flash_GetCommandLineArgs) | 456 TEST_PPAPI_IN_PROCESS(Flash_GetCommandLineArgs) |
| 457 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetInstanceAlwaysOnTop) | 457 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetInstanceAlwaysOnTop) |
| 458 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) | 458 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) |
| 459 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) | 459 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) |
| 460 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) | 460 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 461 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) | 461 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) |
| 462 | 462 |
| 463 TEST_PPAPI_IN_PROCESS(WebSocket_Create) | 463 // TODO(toyoshim): Make disabled tests work. |
| 464 // http://crbug.com/91058 |
| 465 TEST_PPAPI_IN_PROCESS(WebSocket_InvalidConnect) |
| 464 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) | 466 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) |
| 467 TEST_F(PPAPITest, DISABLED_WebSocket_ValidConnect) { |
| 468 RunTestWithWebSocketServer("WebSocket_ValidConnect"); |
| 469 } |
| 470 TEST_F(PPAPITest, DISABLED_WebSocket_TextSendReceive) { |
| 471 RunTestWithWebSocketServer("WebSocket_TextSendReceive"); |
| 472 } |
| 465 | 473 |
| 466 #endif // ADDRESS_SANITIZER | 474 #endif // ADDRESS_SANITIZER |
| OLD | NEW |