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.
5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_ACTION_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_ACTION_H_
8 namespace sync_file_system
{
11 // Indicates no action has been made.
14 // Indicates a new file or directory has been added.
17 // Indicates an existing file or directory has been updated.
20 // Indicates a file or directory has been deleted.
24 const char* SyncActionToString(SyncAction action
);
26 } // namespace sync_file_system
28 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_ACTION_H_