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 #include "chrome/browser/sync_file_system/sync_action.h"
7 #include "base/logging.h"
9 namespace sync_file_system
{
11 const char* SyncActionToString(SyncAction action
) {
13 case SYNC_ACTION_NONE
:
15 case SYNC_ACTION_ADDED
:
17 case SYNC_ACTION_UPDATED
:
19 case SYNC_ACTION_DELETED
:
24 return "Unknown SyncAction";
27 } // namespace sync_file_system