| 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 "chrome/common/chrome_switches.h" | 9 #include "chrome/common/chrome_switches.h" |
| 10 #include "chrome/test/automation/tab_proxy.h" | 10 #include "chrome/test/automation/tab_proxy.h" |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 } | 180 } |
| 181 | 181 |
| 182 TEST_F(PPAPITest, VarDeprecated) { | 182 TEST_F(PPAPITest, VarDeprecated) { |
| 183 RunTest("VarDeprecated"); | 183 RunTest("VarDeprecated"); |
| 184 } | 184 } |
| 185 | 185 |
| 186 TEST_F(PPAPITest, PostMessage) { | 186 TEST_F(PPAPITest, PostMessage) { |
| 187 RunTest("PostMessage"); | 187 RunTest("PostMessage"); |
| 188 } | 188 } |
| 189 | 189 |
| 190 TEST_F(PPAPITest, Memory) { |
| 191 RunTest("Memory"); |
| 192 } |
| 193 |
| 190 // http://crbug.com/83443 | 194 // http://crbug.com/83443 |
| 191 TEST_F(PPAPITest, FAILS_FileIO) { | 195 TEST_F(PPAPITest, FAILS_FileIO) { |
| 192 RunTestViaHTTP("FileIO"); | 196 RunTestViaHTTP("FileIO"); |
| 193 } | 197 } |
| 194 | 198 |
| 195 TEST_F(PPAPITest, FileRef) { | 199 TEST_F(PPAPITest, FileRef) { |
| 196 RunTestViaHTTP("FileRef"); | 200 RunTestViaHTTP("FileRef"); |
| 197 } | 201 } |
| 198 | 202 |
| 199 #if defined(OS_POSIX) | 203 #if defined(OS_POSIX) |
| (...skipping 12 matching lines...) Expand all Loading... |
| 212 #define MAYBE_Transport FLAKY_Transport | 216 #define MAYBE_Transport FLAKY_Transport |
| 213 #else | 217 #else |
| 214 #define MAYBE_Transport Transport | 218 #define MAYBE_Transport Transport |
| 215 #endif | 219 #endif |
| 216 | 220 |
| 217 #if defined(ENABLE_P2P_APIS) | 221 #if defined(ENABLE_P2P_APIS) |
| 218 TEST_F(PPAPITest, MAYBE_Transport) { | 222 TEST_F(PPAPITest, MAYBE_Transport) { |
| 219 RunTest("Transport"); | 223 RunTest("Transport"); |
| 220 } | 224 } |
| 221 #endif // ENABLE_P2P_APIS | 225 #endif // ENABLE_P2P_APIS |
| OLD | NEW |