| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/base/sync_string_conversions.h" | 5 #include "components/sync/engine/sync_string_conversions.h" |
| 6 | 6 |
| 7 #define ENUM_CASE(x) \ | 7 #define ENUM_CASE(x) \ |
| 8 case x: \ | 8 case x: \ |
| 9 return #x | 9 return #x |
| 10 | 10 |
| 11 namespace syncer { | 11 namespace syncer { |
| 12 | 12 |
| 13 const char* ConnectionStatusToString(ConnectionStatus status) { | 13 const char* ConnectionStatusToString(ConnectionStatus status) { |
| 14 switch (status) { | 14 switch (status) { |
| 15 ENUM_CASE(CONNECTION_OK); | 15 ENUM_CASE(CONNECTION_OK); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 switch (type) { | 49 switch (type) { |
| 50 ENUM_CASE(PASSPHRASE_BOOTSTRAP_TOKEN); | 50 ENUM_CASE(PASSPHRASE_BOOTSTRAP_TOKEN); |
| 51 ENUM_CASE(KEYSTORE_BOOTSTRAP_TOKEN); | 51 ENUM_CASE(KEYSTORE_BOOTSTRAP_TOKEN); |
| 52 default: | 52 default: |
| 53 NOTREACHED(); | 53 NOTREACHED(); |
| 54 return "INVALID_BOOTSTRAP_TOKEN_TYPE"; | 54 return "INVALID_BOOTSTRAP_TOKEN_TYPE"; |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 | 57 |
| 58 } // namespace syncer | 58 } // namespace syncer |
| OLD | NEW |