| 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/public/common/content_switches.h" | 9 #include "content/public/common/content_switches.h" |
| 10 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) | 336 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) |
| 337 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) | 337 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) |
| 338 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) | 338 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 339 TEST_PPAPI_IN_PROCESS(Flash_GetCommandLineArgs) | 339 TEST_PPAPI_IN_PROCESS(Flash_GetCommandLineArgs) |
| 340 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetInstanceAlwaysOnTop) | 340 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetInstanceAlwaysOnTop) |
| 341 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) | 341 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) |
| 342 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) | 342 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) |
| 343 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) | 343 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 344 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) | 344 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) |
| 345 | 345 |
| 346 TEST_PPAPI_IN_PROCESS(WebSocket_Create) | 346 // TODO(toyoshim): Make disabled tests work. |
| 347 // These tests are disabled because of lack of WebSocket server. |
| 347 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) | 348 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) |
| 349 TEST_PPAPI_IN_PROCESS(WebSocket_InvalidConnect) |
| 350 TEST_F(PPAPITest, DISABLED_WebSocket_ValidConnect) { |
| 351 RunTest("WebSocket_ValidConnect"); |
| 352 } |
| 353 TEST_F(PPAPITest, DISABLED_WebSocket_TextSendReceive) { |
| 354 RunTest("WebSocket_TextSendReceive"); |
| 355 } |
| OLD | NEW |