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

Unified Diff: chrome/browser/page_cycler/page_cycler_unittest.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: chrome/browser/page_cycler/page_cycler_unittest.cc
diff --git a/chrome/browser/page_cycler/page_cycler_unittest.cc b/chrome/browser/page_cycler/page_cycler_unittest.cc
index f46bf09d73d1899b739b57f91ab9f0846870cc45..eef3eb8ce1d70e5d904dc3256c463b93f4ea5077 100644
--- a/chrome/browser/page_cycler/page_cycler_unittest.cc
+++ b/chrome/browser/page_cycler/page_cycler_unittest.cc
@@ -30,7 +30,7 @@ using content::RenderViewHost;
using content::TestBrowserThread;
using content::WebContentsObserver;
using file_util::ContentsEqual;
-using file_util::PathExists;
+using base::PathExists;
namespace {
const int kFrameID = 1;
@@ -122,8 +122,8 @@ class PageCyclerTest : public BrowserWithTestWindowTest {
errors_file_ = temp_path.AppendASCII("errors_file");
stats_file_ = temp_path.AppendASCII("stats_file");
- CHECK(!file_util::PathExists(errors_file_));
- CHECK(!file_util::PathExists(stats_file_));
+ CHECK(!base::PathExists(errors_file_));
+ CHECK(!base::PathExists(stats_file_));
}
void FailProvisionalLoad(int error_code, string16& error_description) {

Powered by Google App Engine
This is Rietveld 408576698