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

Side by Side Diff: chrome/installer/util/copy_tree_work_item.h

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 #ifndef CHROME_INSTALLER_UTIL_COPY_TREE_WORK_ITEM_H_ 5 #ifndef CHROME_INSTALLER_UTIL_COPY_TREE_WORK_ITEM_H_
6 #define CHROME_INSTALLER_UTIL_COPY_TREE_WORK_ITEM_H_ 6 #define CHROME_INSTALLER_UTIL_COPY_TREE_WORK_ITEM_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
11 #include "base/memory/scoped_temp_dir.h" 11 #include "base/scoped_temp_dir.h"
12 #include "chrome/installer/util/work_item.h" 12 #include "chrome/installer/util/work_item.h"
13 13
14 // A WorkItem subclass that recursively copies a file system hierarchy from 14 // A WorkItem subclass that recursively copies a file system hierarchy from
15 // source path to destination path. It also creates all necessary intermediate 15 // source path to destination path. It also creates all necessary intermediate
16 // paths of the destination path if they do not exist. The file system 16 // paths of the destination path if they do not exist. The file system
17 // hierarchy could be a single file, or a directory. 17 // hierarchy could be a single file, or a directory.
18 // Under the cover CopyTreeWorkItem moves the destination path, if existing, 18 // Under the cover CopyTreeWorkItem moves the destination path, if existing,
19 // to the temporary directory passed in, and then copies the source hierarchy 19 // to the temporary directory passed in, and then copies the source hierarchy
20 // to the destination location. During rollback the original destination 20 // to the destination location. During rollback the original destination
21 // hierarchy is moved back. 21 // hierarchy is moved back.
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 ScopedTempDir backup_path_; 81 ScopedTempDir backup_path_;
82 82
83 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileSameContent); 83 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileSameContent);
84 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileInUse); 84 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileInUse);
85 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileAndCleanup); 85 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileAndCleanup);
86 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, NewNameAndCopyTest); 86 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, NewNameAndCopyTest);
87 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileInUseAndCleanup); 87 FRIEND_TEST_ALL_PREFIXES(CopyTreeWorkItemTest, CopyFileInUseAndCleanup);
88 }; 88 };
89 89
90 #endif // CHROME_INSTALLER_UTIL_COPY_TREE_WORK_ITEM_H_ 90 #endif // CHROME_INSTALLER_UTIL_COPY_TREE_WORK_ITEM_H_
OLDNEW
« no previous file with comments | « chrome/installer/setup/setup_util_unittest.cc ('k') | chrome/installer/util/copy_tree_work_item_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698