diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-01 22:41:12 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-01 22:41:12 +0000 |
commit | 0a612e0146b4cdbe0fc08d7e66c9c5a57c1c252a (patch) | |
tree | ddf613d2e1de330961bd6286eef1bb29e76c3c14 /ppapi | |
parent | 66ec11dd57924eb3035444b45e8da7730460751f (diff) | |
download | chromium_src-0a612e0146b4cdbe0fc08d7e66c9c5a57c1c252a.zip chromium_src-0a612e0146b4cdbe0fc08d7e66c9c5a57c1c252a.tar.gz chromium_src-0a612e0146b4cdbe0fc08d7e66c9c5a57c1c252a.tar.bz2 |
Pepper: Enable some FileRef in-process tests.
At some point, some FileRef tests were disabled for in-process plugins.
Refactoring FileRef to the browser fixes this problem, so we can enable these
tests again.
BUG=
Review URL: https://codereview.chromium.org/23513084
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226321 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/tests/test_file_ref.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ppapi/tests/test_file_ref.cc b/ppapi/tests/test_file_ref.cc index d1448ec..0799445 100644 --- a/ppapi/tests/test_file_ref.cc +++ b/ppapi/tests/test_file_ref.cc @@ -115,13 +115,9 @@ void TestFileRef::RunTests(const std::string& filter) { RUN_CALLBACK_TEST(TestFileRef, QueryAndTouchFile, filter); RUN_CALLBACK_TEST(TestFileRef, DeleteFileAndDirectory, filter); RUN_CALLBACK_TEST(TestFileRef, RenameFileAndDirectory, filter); - // FileRef::Query is out-of-process only. - if (testing_interface_->IsOutOfProcess()) - RUN_CALLBACK_TEST(TestFileRef, Query, filter); + RUN_CALLBACK_TEST(TestFileRef, Query, filter); RUN_CALLBACK_TEST(TestFileRef, FileNameEscaping, filter); - // FileRef::ReadDirectoryEntries is out-of-process only. - if (testing_interface_->IsOutOfProcess()) - RUN_CALLBACK_TEST(TestFileRef, ReadDirectoryEntries, filter); + RUN_CALLBACK_TEST(TestFileRef, ReadDirectoryEntries, filter); } std::string TestFileRef::TestCreate() { |