| 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_impl.h" |
| 10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
| 11 #include "content/common/pepper_plugin_registry.h" | 11 #include "content/common/pepper_plugin_registry.h" |
| 12 #include "chrome/common/chrome_paths.h" | 12 #include "chrome/common/chrome_paths.h" |
| 13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 14 #include "chrome/test/automation/tab_proxy.h" | 14 #include "chrome/test/automation/tab_proxy.h" |
| 15 #include "chrome/test/base/ui_test_utils.h" | 15 #include "chrome/test/base/ui_test_utils.h" |
| 16 #include "chrome/test/ui/ui_test.h" | 16 #include "chrome/test/ui/ui_test.h" |
| 17 #include "net/base/net_util.h" | 17 #include "net/base/net_util.h" |
| 18 #include "net/test/test_server.h" | 18 #include "net/test/test_server.h" |
| 19 #include "webkit/plugins/plugin_switches.h" | 19 #include "webkit/plugins/plugin_switches.h" |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 TEST_PPAPI_OUT_OF_PROCESS(AudioConfig_InvalidConfigs) | 618 TEST_PPAPI_OUT_OF_PROCESS(AudioConfig_InvalidConfigs) |
| 619 | 619 |
| 620 TEST_PPAPI_IN_PROCESS(Audio_Creation) | 620 TEST_PPAPI_IN_PROCESS(Audio_Creation) |
| 621 TEST_PPAPI_IN_PROCESS(Audio_DestroyNoStop) | 621 TEST_PPAPI_IN_PROCESS(Audio_DestroyNoStop) |
| 622 TEST_PPAPI_IN_PROCESS(Audio_Failures) | 622 TEST_PPAPI_IN_PROCESS(Audio_Failures) |
| 623 TEST_PPAPI_OUT_OF_PROCESS(Audio_Creation) | 623 TEST_PPAPI_OUT_OF_PROCESS(Audio_Creation) |
| 624 TEST_PPAPI_OUT_OF_PROCESS(Audio_DestroyNoStop) | 624 TEST_PPAPI_OUT_OF_PROCESS(Audio_DestroyNoStop) |
| 625 TEST_PPAPI_OUT_OF_PROCESS(Audio_Failures) | 625 TEST_PPAPI_OUT_OF_PROCESS(Audio_Failures) |
| 626 | 626 |
| 627 #endif // ADDRESS_SANITIZER | 627 #endif // ADDRESS_SANITIZER |
| OLD | NEW |