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

Side by Side Diff: webkit/fileapi/local_file_system_quota_unittest.cc

Issue 15078003: Cleanup: Remove unneeded base/file_util.h includes in base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: rebase Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
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 // This test checks the entire behavior of FileSystem usage and quota, such as: 5 // This test checks the entire behavior of FileSystem usage and quota, such as:
6 // 1) the actual size of files on disk, 6 // 1) the actual size of files on disk,
7 // 2) the described size in .usage, and 7 // 2) the described size in .usage, and
8 // 3) the result of QuotaManager::GetUsageAndQuota. 8 // 3) the result of QuotaManager::GetUsageAndQuota.
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/file_util.h"
11 #include "base/files/scoped_temp_dir.h" 12 #include "base/files/scoped_temp_dir.h"
12 #include "base/logging.h" 13 #include "base/logging.h"
13 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
15 #include "base/message_loop.h" 16 #include "base/message_loop.h"
16 #include "base/platform_file.h" 17 #include "base/platform_file.h"
17 #include "base/strings/string_number_conversions.h" 18 #include "base/strings/string_number_conversions.h"
18 #include "testing/gtest/include/gtest/gtest.h" 19 #include "testing/gtest/include/gtest/gtest.h"
19 #include "webkit/fileapi/async_file_test_helper.h" 20 #include "webkit/fileapi/async_file_test_helper.h"
20 #include "webkit/fileapi/file_system_file_util.h" 21 #include "webkit/fileapi/file_system_file_util.h"
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 338
338 EXPECT_EQ(2 * child_file_size + 3 * grandchild_file_size, ActualFileSize()); 339 EXPECT_EQ(2 * child_file_size + 3 * grandchild_file_size, ActualFileSize());
339 EXPECT_EQ(expected_usage, SizeByQuotaUtil()); 340 EXPECT_EQ(expected_usage, SizeByQuotaUtil());
340 GetUsageAndQuotaFromQuotaManager(); 341 GetUsageAndQuotaFromQuotaManager();
341 EXPECT_EQ(quota::kQuotaStatusOk, quota_status()); 342 EXPECT_EQ(quota::kQuotaStatusOk, quota_status());
342 EXPECT_EQ(expected_usage, usage()); 343 EXPECT_EQ(expected_usage, usage());
343 ASSERT_LT(expected_usage, quota()); 344 ASSERT_LT(expected_usage, quota());
344 } 345 }
345 346
346 } // namespace fileapi 347 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/fileapi/local_file_system_operation_unittest.cc ('k') | webkit/fileapi/local_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698