Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: content/browser/quota/quota_reservation_manager_unittest.cc

Issue 1159623009: content: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test build fix. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "storage/browser/fileapi/quota/quota_reservation_manager.h" 5 #include "storage/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/files/file.h" 9 #include "base/files/file.h"
10 #include "base/files/file_util.h" 10 #include "base/files/file_util.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/location.h"
13 #include "base/run_loop.h" 13 #include "base/run_loop.h"
14 #include "base/single_thread_task_runner.h"
15 #include "base/thread_task_runner_handle.h"
14 #include "storage/browser/fileapi/quota/open_file_handle.h" 16 #include "storage/browser/fileapi/quota/open_file_handle.h"
15 #include "storage/browser/fileapi/quota/quota_reservation.h" 17 #include "storage/browser/fileapi/quota/quota_reservation.h"
16 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
17 19
18 using storage::kFileSystemTypeTemporary; 20 using storage::kFileSystemTypeTemporary;
19 using storage::OpenFileHandle; 21 using storage::OpenFileHandle;
20 using storage::QuotaReservation; 22 using storage::QuotaReservation;
21 using storage::QuotaReservationManager; 23 using storage::QuotaReservationManager;
22 24
23 namespace content { 25 namespace content {
(...skipping 25 matching lines...) Expand all
49 on_disk_usage_(kInitialFileSize) {} 51 on_disk_usage_(kInitialFileSize) {}
50 ~FakeBackend() override {} 52 ~FakeBackend() override {}
51 53
52 void ReserveQuota(const GURL& origin, 54 void ReserveQuota(const GURL& origin,
53 storage::FileSystemType type, 55 storage::FileSystemType type,
54 int64 delta, 56 int64 delta,
55 const ReserveQuotaCallback& callback) override { 57 const ReserveQuotaCallback& callback) override {
56 EXPECT_EQ(GURL(kOrigin), origin); 58 EXPECT_EQ(GURL(kOrigin), origin);
57 EXPECT_EQ(kType, type); 59 EXPECT_EQ(kType, type);
58 on_memory_usage_ += delta; 60 on_memory_usage_ += delta;
59 base::MessageLoopProxy::current()->PostTask( 61 base::ThreadTaskRunnerHandle::Get()->PostTask(
60 FROM_HERE, 62 FROM_HERE,
61 base::Bind(base::IgnoreResult(callback), base::File::FILE_OK, delta)); 63 base::Bind(base::IgnoreResult(callback), base::File::FILE_OK, delta));
62 } 64 }
63 65
64 void ReleaseReservedQuota(const GURL& origin, 66 void ReleaseReservedQuota(const GURL& origin,
65 storage::FileSystemType type, 67 storage::FileSystemType type,
66 int64 size) override { 68 int64 size) override {
67 EXPECT_LE(0, size); 69 EXPECT_LE(0, size);
68 EXPECT_EQ(GURL(kOrigin), origin); 70 EXPECT_EQ(GURL(kOrigin), origin);
69 EXPECT_EQ(kType, type); 71 EXPECT_EQ(kType, type);
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 358
357 EXPECT_EQ(kInitialFileSize + 10, GetFileSize(file_path())); 359 EXPECT_EQ(kInitialFileSize + 10, GetFileSize(file_path()));
358 EXPECT_EQ(kInitialFileSize + 15 + 20, fake_backend()->on_memory_usage()); 360 EXPECT_EQ(kInitialFileSize + 15 + 20, fake_backend()->on_memory_usage());
359 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_disk_usage()); 361 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_disk_usage());
360 362
361 reservation2 = NULL; 363 reservation2 = NULL;
362 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_memory_usage()); 364 EXPECT_EQ(kInitialFileSize + 10, fake_backend()->on_memory_usage());
363 } 365 }
364 366
365 } // namespace content 367 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/quota/quota_manager_unittest.cc ('k') | content/browser/quota/quota_temporary_storage_evictor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698