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

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: Created 7 years, 6 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
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 68bbfb07b8694df8fd5ad9234a59047d3e24214a..2947f0762fb292b9fd202d607963212e6a43bde9 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 {

Powered by Google App Engine
This is Rietveld 408576698