1 // Copyright 2013 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_TYPE_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_TYPE_H_ 7 8 namespace sync_file_system { 9 10 enum SyncFileType { 11 // For non-existent files or for files whose type is not known yet. 12 SYNC_FILE_TYPE_UNKNOWN, 13 14 // For regular files. 15 SYNC_FILE_TYPE_FILE, 16 17 // For directories/folders. 18 SYNC_FILE_TYPE_DIRECTORY, 19 }; 20 21 } // namespace sync_file_system 22 23 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_TYPE_H_ 24