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

Unified Diff: chrome/browser/ui/libgtk2ui/select_file_dialog_impl.cc

Issue 19052005: Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the 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/ui/libgtk2ui/select_file_dialog_impl.cc
diff --git a/chrome/browser/ui/libgtk2ui/select_file_dialog_impl.cc b/chrome/browser/ui/libgtk2ui/select_file_dialog_impl.cc
index c3e5e9b56cf90cfe8356dc60afec17036667ea80..450f2b411a7460e5d59dcf06b14c656a069ee7c7 100644
--- a/chrome/browser/ui/libgtk2ui/select_file_dialog_impl.cc
+++ b/chrome/browser/ui/libgtk2ui/select_file_dialog_impl.cc
@@ -90,7 +90,7 @@ bool SelectFileDialogImpl::IsRunning(gfx::NativeWindow parent_window) const {
bool SelectFileDialogImpl::CallDirectoryExistsOnUIThread(
const base::FilePath& path) {
base::ThreadRestrictions::ScopedAllowIO allow_io;
- return file_util::DirectoryExists(path);
+ return base::DirectoryExists(path);
}
} // namespace libgtk2ui
« no previous file with comments | « chrome/browser/ui/libgtk2ui/select_file_dialog_impl.h ('k') | chrome/browser/ui/metro_pin_tab_helper_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698