| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "webkit/browser/fileapi/quota/quota_reservation_manager.h" | 5 #include "webkit/browser/fileapi/quota/quota_reservation_manager.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| 11 #include "base/files/scoped_temp_dir.h" | 11 #include "base/files/scoped_temp_dir.h" |
| 12 #include "base/message_loop/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
| 13 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 #include "webkit/browser/fileapi/quota/open_file_handle.h" | 15 #include "webkit/browser/fileapi/quota/open_file_handle.h" |
| 16 #include "webkit/browser/fileapi/quota/quota_reservation.h" | 16 #include "webkit/browser/fileapi/quota/quota_reservation.h" |
| 17 | 17 |
| 18 namespace fileapi { | 18 using fileapi::FileSystemType; |
| 19 using fileapi::kFileSystemTypeTemporary; |
| 20 using fileapi::OpenFileHandle; |
| 21 using fileapi::QuotaReservation; |
| 22 using fileapi::QuotaReservationManager; |
| 23 |
| 24 namespace content { |
| 19 | 25 |
| 20 namespace { | 26 namespace { |
| 21 | 27 |
| 22 const char kOrigin[] = "http://example.com"; | 28 const char kOrigin[] = "http://example.com"; |
| 23 const FileSystemType kType = kFileSystemTypeTemporary; | 29 const FileSystemType kType = kFileSystemTypeTemporary; |
| 24 const int64 kInitialFileSize = 1; | 30 const int64 kInitialFileSize = 1; |
| 25 | 31 |
| 26 typedef QuotaReservationManager::ReserveQuotaCallback ReserveQuotaCallback; | 32 typedef QuotaReservationManager::ReserveQuotaCallback ReserveQuotaCallback; |
| 27 | 33 |
| 28 int64 GetFileSize(const base::FilePath& path) { | 34 int64 GetFileSize(const base::FilePath& path) { |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 reservation1 = NULL; | 358 reservation1 = NULL; |
| 353 | 359 |
| 354 EXPECT_EQ(kInitialFileSize + 10, GetFileSize(file_path())); | 360 EXPECT_EQ(kInitialFileSize + 10, GetFileSize(file_path())); |
| 355 EXPECT_EQ(kInitialFileSize + 15 + 20, fake_backend()->on_memory_usage()); | 361 EXPECT_EQ(kInitialFileSize + 15 + 20, fake_backend()->on_memory_usage()); |
| 356 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_disk_usage()); | 362 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_disk_usage()); |
| 357 | 363 |
| 358 reservation2 = NULL; | 364 reservation2 = NULL; |
| 359 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_memory_usage()); | 365 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_memory_usage()); |
| 360 } | 366 } |
| 361 | 367 |
| 362 } // namespace fileapi | 368 } // namespace content |
| OLD | NEW |