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

Unified Diff: ui/shell_dialogs/gtk/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
« no previous file with comments | « ui/shell_dialogs/gtk/select_file_dialog_impl.h ('k') | ui/shell_dialogs/select_file_dialog_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/shell_dialogs/gtk/select_file_dialog_impl.cc
diff --git a/ui/shell_dialogs/gtk/select_file_dialog_impl.cc b/ui/shell_dialogs/gtk/select_file_dialog_impl.cc
index caea53aa014220d21ca85ffc7b7539ec7b3a6bda..c7e80c1a38ca5e00ddb892a455b5a758b48eaa19 100644
--- a/ui/shell_dialogs/gtk/select_file_dialog_impl.cc
+++ b/ui/shell_dialogs/gtk/select_file_dialog_impl.cc
@@ -86,7 +86,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 ui
« no previous file with comments | « ui/shell_dialogs/gtk/select_file_dialog_impl.h ('k') | ui/shell_dialogs/select_file_dialog_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698