| Index: chrome/test/ppapi/ppapi_test.cc
|
| diff --git a/chrome/test/ppapi/ppapi_test.cc b/chrome/test/ppapi/ppapi_test.cc
|
| index 74fedbe35cdbfb675d810b06f7d9554b6315cb5b..7bd3284cd51752b57d6668b2d7f53087a3e5ba58 100644
|
| --- a/chrome/test/ppapi/ppapi_test.cc
|
| +++ b/chrome/test/ppapi/ppapi_test.cc
|
| @@ -172,13 +172,6 @@ void PPAPITestBase::RunTest(const std::string& test_case) {
|
| RunTestURL(url);
|
| }
|
|
|
| -void PPAPITestBase::RunTestAndReload(const std::string& test_case) {
|
| - GURL url = GetTestFileUrl(test_case);
|
| - RunTestURL(url);
|
| - // If that passed, we simply run the test again, which navigates again.
|
| - RunTestURL(url);
|
| -}
|
| -
|
| void PPAPITestBase::RunTestViaHTTP(const std::string& test_case) {
|
| base::FilePath document_root;
|
| ASSERT_TRUE(ui_test_utils::GetRelativeBuildDirectory(&document_root));
|
| @@ -360,12 +353,6 @@ void PPAPINaClTest::RunTest(const std::string& test_case) {
|
| #endif
|
| }
|
|
|
| -void PPAPINaClTest::RunTestAndReload(const std::string& test_case) {
|
| -#if !defined(DISABLE_NACL)
|
| - PPAPITestBase::RunTestAndReload(test_case);
|
| -#endif
|
| -}
|
| -
|
| void PPAPINaClTest::RunTestViaHTTP(const std::string& test_case) {
|
| #if !defined(DISABLE_NACL)
|
| PPAPITestBase::RunTestViaHTTP(test_case);
|
|
|