| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <list> | 5 #include <list> |
| 6 #include <map> | 6 #include <map> |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
| 14 #include "base/message_loop_proxy.h" | 14 #include "base/message_loop_proxy.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "webkit/quota/mock_storage_client.h" | 16 #include "webkit/browser/quota/mock_storage_client.h" |
| 17 #include "webkit/quota/quota_manager.h" | 17 #include "webkit/browser/quota/quota_manager.h" |
| 18 #include "webkit/quota/quota_temporary_storage_evictor.h" | 18 #include "webkit/browser/quota/quota_temporary_storage_evictor.h" |
| 19 | 19 |
| 20 namespace quota { | 20 namespace quota { |
| 21 | 21 |
| 22 class QuotaTemporaryStorageEvictorTest; | 22 class QuotaTemporaryStorageEvictorTest; |
| 23 | 23 |
| 24 namespace { | 24 namespace { |
| 25 | 25 |
| 26 class MockQuotaEvictionHandler : public quota::QuotaEvictionHandler { | 26 class MockQuotaEvictionHandler : public quota::QuotaEvictionHandler { |
| 27 public: | 27 public: |
| 28 explicit MockQuotaEvictionHandler(QuotaTemporaryStorageEvictorTest *test) | 28 explicit MockQuotaEvictionHandler(QuotaTemporaryStorageEvictorTest *test) |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 EXPECT_EQ(150 + 300, quota_eviction_handler()->GetUsage()); | 401 EXPECT_EQ(150 + 300, quota_eviction_handler()->GetUsage()); |
| 402 | 402 |
| 403 EXPECT_EQ(0, statistics().num_errors_on_evicting_origin); | 403 EXPECT_EQ(0, statistics().num_errors_on_evicting_origin); |
| 404 EXPECT_EQ(0, statistics().num_errors_on_getting_usage_and_quota); | 404 EXPECT_EQ(0, statistics().num_errors_on_getting_usage_and_quota); |
| 405 EXPECT_EQ(2, statistics().num_evicted_origins); | 405 EXPECT_EQ(2, statistics().num_evicted_origins); |
| 406 EXPECT_EQ(1, statistics().num_eviction_rounds); | 406 EXPECT_EQ(1, statistics().num_eviction_rounds); |
| 407 EXPECT_EQ(0, statistics().num_skipped_eviction_rounds); | 407 EXPECT_EQ(0, statistics().num_skipped_eviction_rounds); |
| 408 } | 408 } |
| 409 | 409 |
| 410 } // namespace quota | 410 } // namespace quota |
| OLD | NEW |