// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_ #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_ #include <stddef.h> #include <unordered_map> #include "base/files/file_path.h" namespace base { class FilePath; } // namespace base namespace sync_file_system { // Stores disjoint subtrees of a directory tree. class SubtreeSet { … }; } // namespace sync_file_system #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_