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

Unified Diff: content/browser/net/sqlite_persistent_cookie_store_unittest.cc

Issue 105293002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/net/sqlite_persistent_cookie_store_unittest.cc
diff --git a/content/browser/net/sqlite_persistent_cookie_store_unittest.cc b/content/browser/net/sqlite_persistent_cookie_store_unittest.cc
index 4adb7906685e43301a6602d5091fd5f4de90ffef..49ac64be46871059617ba3461b32ddc47f960c15 100644
--- a/content/browser/net/sqlite_persistent_cookie_store_unittest.cc
+++ b/content/browser/net/sqlite_persistent_cookie_store_unittest.cc
@@ -289,7 +289,7 @@ TEST_F(SQLitePersistentCookieStoreTest, TestFlush) {
// whether the DB file has been modified by checking its size.
base::FilePath path = temp_dir_.path().Append(kCookieFilename);
base::PlatformFileInfo info;
- ASSERT_TRUE(file_util::GetFileInfo(path, &info));
+ ASSERT_TRUE(base::GetFileInfo(path, &info));
int64 base_size = info.size;
// Write some large cookies, so the DB will have to expand by several KB.
@@ -304,7 +304,7 @@ TEST_F(SQLitePersistentCookieStoreTest, TestFlush) {
Flush();
// We forced a write, so now the file will be bigger.
- ASSERT_TRUE(file_util::GetFileInfo(path, &info));
+ ASSERT_TRUE(base::GetFileInfo(path, &info));
ASSERT_GT(info.size, base_size);
}
« no previous file with comments | « content/browser/indexed_db/indexed_db_context_impl.cc ('k') | content/browser/renderer_host/file_utilities_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698