// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef STORAGE_COMMON_FILE_SYSTEM_FILE_SYSTEM_TYPES_H_ #define STORAGE_COMMON_FILE_SYSTEM_FILE_SYSTEM_TYPES_H_ #include "third_party/blink/public/platform/web_file_system_type.h" namespace storage { // See also GetFileSystemTypeString in file_system_util.h to convert the // numeric value to a string name. // // The numeric values are not guaranteed to be stable across Chrome versions. // Do not save them to persistent logs, preferences, etc. enum FileSystemType { … }; } // namespace storage #endif // STORAGE_COMMON_FILE_SYSTEM_FILE_SYSTEM_TYPES_H_