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

Unified Diff: content/browser/indexed_db/indexed_db_browsertest.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/download/save_file_manager.cc ('k') | net/disk_cache/disk_cache_test_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/indexed_db/indexed_db_browsertest.cc
diff --git a/content/browser/indexed_db/indexed_db_browsertest.cc b/content/browser/indexed_db/indexed_db_browsertest.cc
index d24cf37c532c9d1f3e9850b1a96d562c084a1dcd..cecc98a113af5ac9dbadfc4fe3acb9171cb19a0e 100644
--- a/content/browser/indexed_db/indexed_db_browsertest.cc
+++ b/content/browser/indexed_db/indexed_db_browsertest.cc
@@ -243,9 +243,9 @@ static void CopyLevelDBToProfile(Shell* shell,
// profile/IndexedDB/file__0.xxx/
ASSERT_TRUE(file_util::CreateDirectory(dest));
const bool kRecursive = true;
- ASSERT_TRUE(file_util::CopyDirectory(test_data_dir,
- context_impl->data_path(),
- kRecursive));
+ ASSERT_TRUE(base::CopyDirectory(test_data_dir,
+ context_impl->data_path(),
+ kRecursive));
}
class IndexedDBBrowserTestWithPreexistingLevelDB : public IndexedDBBrowserTest {
« no previous file with comments | « content/browser/download/save_file_manager.cc ('k') | net/disk_cache/disk_cache_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698