| Index: content/browser/renderer_host/pepper/quota_reservation_unittest.cc
|
| diff --git a/content/browser/renderer_host/pepper/quota_reservation_unittest.cc b/content/browser/renderer_host/pepper/quota_reservation_unittest.cc
|
| index 3f760e5566428abc531ff58305ebaf94eebb5869..05e66f8ad8af29283797f432e7315e86b28a2354 100644
|
| --- a/content/browser/renderer_host/pepper/quota_reservation_unittest.cc
|
| +++ b/content/browser/renderer_host/pepper/quota_reservation_unittest.cc
|
| @@ -80,6 +80,7 @@ class QuotaReservationTest : public testing::Test {
|
|
|
| virtual void TearDown() OVERRIDE {
|
| reservation_manager_.reset();
|
| + base::RunLoop().RunUntilIdle();
|
| }
|
|
|
| base::FilePath MakeFilePath(const base::FilePath::StringType& file_name) {
|
| @@ -150,7 +151,7 @@ void ReserveQuota(
|
| // Tests that:
|
| // 1) We can reserve quota with no files open.
|
| // 2) Open a file, grow it, close it, and reserve quota with correct sizes.
|
| -TEST_F(QuotaReservationTest, DISABLED_ReserveQuota) {
|
| +TEST_F(QuotaReservationTest, ReserveQuota) {
|
| GURL origin(kOrigin);
|
| FileSystemType type = kType;
|
|
|
| @@ -191,7 +192,7 @@ TEST_F(QuotaReservationTest, DISABLED_ReserveQuota) {
|
|
|
| // Tests that:
|
| // 1) We can open and close multiple files.
|
| -TEST_F(QuotaReservationTest, DISABLED_MultipleFiles) {
|
| +TEST_F(QuotaReservationTest, MultipleFiles) {
|
| GURL origin(kOrigin);
|
| FileSystemType type = kType;
|
|
|
|
|