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

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

Issue 7048007: Move scoped_temp_dir and scoped_native_library back from base/memory to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unknwn Created 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <string> 5 #include <string>
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "base/memory/scoped_callback_factory.h"
8 #include "base/message_loop_proxy.h" 9 #include "base/message_loop_proxy.h"
9 #include "base/memory/scoped_callback_factory.h"
10 #include "base/memory/scoped_temp_dir.h"
11 #include "base/platform_file.h" 10 #include "base/platform_file.h"
11 #include "base/scoped_temp_dir.h"
12 #include "base/sys_string_conversions.h" 12 #include "base/sys_string_conversions.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "webkit/fileapi/file_system_context.h" 15 #include "webkit/fileapi/file_system_context.h"
16 #include "webkit/fileapi/file_system_file_util.h" 16 #include "webkit/fileapi/file_system_file_util.h"
17 #include "webkit/fileapi/file_system_types.h"
18 #include "webkit/fileapi/file_system_operation_context.h" 17 #include "webkit/fileapi/file_system_operation_context.h"
19 #include "webkit/fileapi/file_system_path_manager.h" 18 #include "webkit/fileapi/file_system_path_manager.h"
19 #include "webkit/fileapi/file_system_test_helper.h"
20 #include "webkit/fileapi/file_system_types.h"
20 #include "webkit/fileapi/local_file_system_file_util.h" 21 #include "webkit/fileapi/local_file_system_file_util.h"
21 #include "webkit/fileapi/quota_file_util.h" 22 #include "webkit/fileapi/quota_file_util.h"
22 #include "webkit/fileapi/file_system_test_helper.h"
23 #include "webkit/quota/quota_manager.h" 23 #include "webkit/quota/quota_manager.h"
24 24
25 namespace fileapi { 25 namespace fileapi {
26 26
27 // TODO(dmikurube): Cover all public methods in LocalFileSystemFileUtil. 27 // TODO(dmikurube): Cover all public methods in LocalFileSystemFileUtil.
28 class LocalFileSystemFileUtilTest : public testing::Test { 28 class LocalFileSystemFileUtilTest : public testing::Test {
29 public: 29 public:
30 LocalFileSystemFileUtilTest() 30 LocalFileSystemFileUtilTest()
31 : callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) { 31 : callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) {
32 } 32 }
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 ASSERT_EQ(base::PLATFORM_FILE_OK, 266 ASSERT_EQ(base::PLATFORM_FILE_OK,
267 FileUtil()->Move(context.get(), Path(from_dir), Path(to_dir))); 267 FileUtil()->Move(context.get(), Path(from_dir), Path(to_dir)));
268 268
269 EXPECT_FALSE(DirectoryExists(from_dir)); 269 EXPECT_FALSE(DirectoryExists(from_dir));
270 EXPECT_TRUE(DirectoryExists(to_dir)); 270 EXPECT_TRUE(DirectoryExists(to_dir));
271 EXPECT_TRUE(FileExists(to_file)); 271 EXPECT_TRUE(FileExists(to_file));
272 EXPECT_EQ(1020, GetSize(to_file)); 272 EXPECT_EQ(1020, GetSize(to_file));
273 } 273 }
274 274
275 } // namespace fileapi 275 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/fileapi/file_writer_delegate_unittest.cc ('k') | webkit/fileapi/obfuscated_file_system_file_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698