Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: sync/internal_api/public/util/sync_string_conversions.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "sync/internal_api/public/util/sync_string_conversions.h"
6
7 #define ENUM_CASE(x) case x: return #x
8
9 namespace syncer {
10
11 const char* ConnectionStatusToString(ConnectionStatus status) {
12 switch (status) {
13 ENUM_CASE(CONNECTION_OK);
14 ENUM_CASE(CONNECTION_AUTH_ERROR);
15 ENUM_CASE(CONNECTION_SERVER_ERROR);
16 default:
17 NOTREACHED();
18 return "INVALID_CONNECTION_STATUS";
19 }
20 }
21
22 // Helper function that converts a PassphraseRequiredReason value to a string.
23 const char* PassphraseRequiredReasonToString(
24 PassphraseRequiredReason reason) {
25 switch (reason) {
26 ENUM_CASE(REASON_PASSPHRASE_NOT_REQUIRED);
27 ENUM_CASE(REASON_ENCRYPTION);
28 ENUM_CASE(REASON_DECRYPTION);
29 default:
30 NOTREACHED();
31 return "INVALID_REASON";
32 }
33 }
34
35 const char* PassphraseTypeToString(PassphraseType type) {
36 switch (type) {
37 ENUM_CASE(IMPLICIT_PASSPHRASE);
38 ENUM_CASE(KEYSTORE_PASSPHRASE);
39 ENUM_CASE(FROZEN_IMPLICIT_PASSPHRASE);
40 ENUM_CASE(CUSTOM_PASSPHRASE);
41 default:
42 NOTREACHED();
43 return "INVALID_PASSPHRASE_TYPE";
44 }
45 }
46
47 const char* BootstrapTokenTypeToString(BootstrapTokenType type) {
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
57 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/public/util/sync_string_conversions.h ('k') | sync/internal_api/public/util/syncer_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698