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

Unified Diff: base/files/file_path_watcher_linux.cc

Issue 105293002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « base/file_util_win.cc ('k') | base/files/file_path_watcher_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/files/file_path_watcher_linux.cc
diff --git a/base/files/file_path_watcher_linux.cc b/base/files/file_path_watcher_linux.cc
index 1e986e1e9151b2e2b10d430b32e8bef272e3be8d..d5052e2e512480ac9d4649e3b3ca67a32c8b6b80 100644
--- a/base/files/file_path_watcher_linux.cc
+++ b/base/files/file_path_watcher_linux.cc
@@ -446,7 +446,7 @@ bool FilePathWatcherImpl::UpdateWatches() {
if (path_valid) {
watch_entry->watch_ = g_inotify_reader.Get().AddWatch(path, this);
if ((watch_entry->watch_ == InotifyReader::kInvalidWatch) &&
- file_util::IsLink(path)) {
+ base::IsLink(path)) {
FilePath link;
if (ReadSymbolicLink(path, &link)) {
if (!link.IsAbsolute())
« no previous file with comments | « base/file_util_win.cc ('k') | base/files/file_path_watcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698