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

Side by Side Diff: components/sync/api/string_ordinal.h

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
« no previous file with comments | « components/sync/api/model_type_store.cc ('k') | components/sync/api/sync_change.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef SYNC_API_STRING_ORDINAL_H_ 5 #ifndef COMPONENTS_SYNC_API_STRING_ORDINAL_H_
6 #define SYNC_API_STRING_ORDINAL_H_ 6 #define COMPONENTS_SYNC_API_STRING_ORDINAL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include "sync/internal_api/public/base/ordinal.h" 11 #include "components/sync/base/ordinal.h"
12 12
13 namespace syncer { 13 namespace syncer {
14 14
15 // A StringOrdinal is an Ordinal with range 'a'-'z' for printability 15 // A StringOrdinal is an Ordinal with range 'a'-'z' for printability
16 // of its internal byte string representation. (Think of 16 // of its internal byte string representation. (Think of
17 // StringOrdinal as being short for PrintableStringOrdinal.) It 17 // StringOrdinal as being short for PrintableStringOrdinal.) It
18 // should be used for data types that want to maintain one or more 18 // should be used for data types that want to maintain one or more
19 // orderings for nodes. 19 // orderings for nodes.
20 // 20 //
21 // Since StringOrdinals contain only printable characters, it is safe 21 // Since StringOrdinals contain only printable characters, it is safe
(...skipping 12 matching lines...) Expand all
34 static_assert(StringOrdinal::kOneDigit == 'b', 34 static_assert(StringOrdinal::kOneDigit == 'b',
35 "StringOrdinal has incorrect one digit"); 35 "StringOrdinal has incorrect one digit");
36 static_assert(StringOrdinal::kMidDigit == 'n', 36 static_assert(StringOrdinal::kMidDigit == 'n',
37 "StringOrdinal has incorrect mid digit"); 37 "StringOrdinal has incorrect mid digit");
38 static_assert(StringOrdinal::kMaxDigit == 'z', 38 static_assert(StringOrdinal::kMaxDigit == 'z',
39 "StringOrdinal has incorrect max digit"); 39 "StringOrdinal has incorrect max digit");
40 static_assert(StringOrdinal::kMidDigitValue == 13, 40 static_assert(StringOrdinal::kMidDigitValue == 13,
41 "StringOrdinal has incorrect mid digit value"); 41 "StringOrdinal has incorrect mid digit value");
42 static_assert(StringOrdinal::kMaxDigitValue == 25, 42 static_assert(StringOrdinal::kMaxDigitValue == 25,
43 "StringOrdinal has incorrect max digit value"); 43 "StringOrdinal has incorrect max digit value");
44 static_assert(StringOrdinal::kRadix == 26, 44 static_assert(StringOrdinal::kRadix == 26, "StringOrdinal has incorrect radix");
45 "StringOrdinal has incorrect radix");
46 45
47 } // namespace syncer 46 } // namespace syncer
48 47
49 #endif // SYNC_API_STRING_ORDINAL_H_ 48 #endif // COMPONENTS_SYNC_API_STRING_ORDINAL_H_
OLDNEW
« no previous file with comments | « components/sync/api/model_type_store.cc ('k') | components/sync/api/sync_change.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698