Chromium Code Reviews| 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 "sync/internal_api/public/util/sync_string_conversions.h" | 5 #include "sync/internal_api/public/util/sync_string_conversions.h" |
| 6 | 6 |
| 7 #define ENUM_CASE(x) case x: return #x | 7 #define ENUM_CASE(x) case x: return #x |
| 8 | 8 |
| 9 namespace syncer { | 9 namespace syncer { |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 37 ENUM_CASE(IMPLICIT_PASSPHRASE); | 37 ENUM_CASE(IMPLICIT_PASSPHRASE); |
| 38 ENUM_CASE(KEYSTORE_PASSPHRASE); | 38 ENUM_CASE(KEYSTORE_PASSPHRASE); |
| 39 ENUM_CASE(FROZEN_IMPLICIT_PASSPHRASE); | 39 ENUM_CASE(FROZEN_IMPLICIT_PASSPHRASE); |
| 40 ENUM_CASE(CUSTOM_PASSPHRASE); | 40 ENUM_CASE(CUSTOM_PASSPHRASE); |
| 41 default: | 41 default: |
| 42 NOTREACHED(); | 42 NOTREACHED(); |
| 43 return "INVALID_PASSPHRASE_STATE"; | 43 return "INVALID_PASSPHRASE_STATE"; |
| 44 } | 44 } |
| 45 } | 45 } |
| 46 | 46 |
| 47 const char* BootstrapTokenTypeToString(syncer::BootstrapTokenType type) { | |
|
akalin
2012/08/22 22:09:33
no need syncer::
Nicolas Zea
2012/08/22 22:48:59
Done.
| |
| 48 switch (type) { | |
| 49 ENUM_CASE(PASSPHRASE_BOOTSTRAP_TOKEN); | |
| 50 ENUM_CASE(KEYSTORE_BOOTSTRAP_TOKEN); | |
| 51 default: | |
| 52 NOTREACHED(); | |
| 53 return "INVALID_BOOTSTRAP_TOKEN_TYPE"; | |
| 54 } | |
| 55 } | |
| 56 | |
| 47 } // namespace syncer | 57 } // namespace syncer |
| OLD | NEW |