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

Unified Diff: chrome/browser/first_run/first_run_browsertest.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: chrome/browser/first_run/first_run_browsertest.cc
diff --git a/chrome/browser/first_run/first_run_browsertest.cc b/chrome/browser/first_run/first_run_browsertest.cc
index c295df9b0fa16ddc4517c7bfc13bc7cdb0f50ff6..f4872b70f3faf39f060fd16d82837b73569f5088 100644
--- a/chrome/browser/first_run/first_run_browsertest.cc
+++ b/chrome/browser/first_run/first_run_browsertest.cc
@@ -89,7 +89,7 @@ class FirstRunMasterPrefsBrowserTestBase : public InProcessBrowserTest {
ASSERT_TRUE(text_.get());
ASSERT_TRUE(base::CreateTemporaryFile(&prefs_file_));
- EXPECT_TRUE(file_util::WriteFile(prefs_file_, text_->c_str(),
+ EXPECT_TRUE(base::WriteFile(prefs_file_, text_->c_str(),
text_->size()));
viettrungluu 2014/02/28 21:47:24 "
first_run::SetMasterPrefsPathForTesting(prefs_file_);

Powered by Google App Engine
This is Rietveld 408576698