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

Unified Diff: chrome/browser/ui/browser_focus_uitest.cc

Issue 19579005: Move ReadFileToString to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/ui/browser_focus_uitest.cc
diff --git a/chrome/browser/ui/browser_focus_uitest.cc b/chrome/browser/ui/browser_focus_uitest.cc
index 93790d333a864e085452fd759f180de2e67bc6b2..fc03e9e2970f388b2d8b1e7f18b52b6c5e515a29 100644
--- a/chrome/browser/ui/browser_focus_uitest.cc
+++ b/chrome/browser/ui/browser_focus_uitest.cc
@@ -172,7 +172,7 @@ class TestInterstitialPage : public content::InterstitialPageDelegate {
EXPECT_TRUE(r);
file_path = file_path.AppendASCII("focus");
file_path = file_path.AppendASCII(kTypicalPageName);
- r = file_util::ReadFileToString(file_path, &html_contents_);
+ r = base::ReadFileToString(file_path, &html_contents_);
EXPECT_TRUE(r);
interstitial_page_ = InterstitialPage::Create(
tab, new_navigation, url , this);

Powered by Google App Engine
This is Rietveld 408576698