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

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

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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
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 COMPONENTS_SYNC_API_STRING_ORDINAL_H_ 5 #ifndef COMPONENTS_SYNC_MODEL_STRING_ORDINAL_H_
6 #define COMPONENTS_SYNC_API_STRING_ORDINAL_H_ 6 #define COMPONENTS_SYNC_MODEL_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 "components/sync/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
(...skipping 21 matching lines...) Expand all
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, "StringOrdinal has incorrect radix"); 44 static_assert(StringOrdinal::kRadix == 26, "StringOrdinal has incorrect radix");
45 45
46 } // namespace syncer 46 } // namespace syncer
47 47
48 #endif // COMPONENTS_SYNC_API_STRING_ORDINAL_H_ 48 #endif // COMPONENTS_SYNC_MODEL_STRING_ORDINAL_H_
OLDNEW
« no previous file with comments | « components/sync/model/model_type_store.cc ('k') | components/sync/model/stub_model_type_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698