1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45

content / browser / file_system_access / file_path_watcher / file_path_watcher_stub.cc [blame]

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This file exists for systems for which Chromium does not support watching
// file paths. This includes Unix systems that don't have the inotify headers
// and thus cannot build file_watcher_inotify.cc.

#include "content/browser/file_system_access/file_path_watcher/file_path_watcher.h"

#include <memory>

#include "base/check.h"
#include "base/notimplemented.h"
#include "base/task/sequenced_task_runner.h"

namespace content {

namespace {

class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate {
 public:
  FilePathWatcherImpl() = default;
  FilePathWatcherImpl(const FilePathWatcherImpl&) = delete;
  FilePathWatcherImpl& operator=(const FilePathWatcherImpl&) = delete;
  ~FilePathWatcherImpl() override = default;

  // FilePathWatcher::PlatformDelegate:
  bool Watch(const base::FilePath& path,
             Type type,
             const FilePathWatcher::Callback& callback) override {
    DCHECK(!callback.is_null());

    NOTIMPLEMENTED_LOG_ONCE();
    return false;
  }
  void Cancel() override { set_cancelled(); }
};

}  // namespace

FilePathWatcher::FilePathWatcher()
    : FilePathWatcher(std::make_unique<FilePathWatcherImpl>()) {}

}  // namespace content