Index: sync/internal_api/public/base/node_ordinal.h |
diff --git a/sync/internal_api/public/base/node_ordinal.h b/sync/internal_api/public/base/node_ordinal.h |
index 1c49be0fb93972feca231e739b0c78232a4cab46..bc9a04b17991259dec10313a27a84f56ddd7ca20 100644 |
--- a/sync/internal_api/public/base/node_ordinal.h |
+++ b/sync/internal_api/public/base/node_ordinal.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Copyright 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -6,6 +6,7 @@ |
#define SYNC_INTERNAL_API_PUBLIC_BASE_NODE_ORDINAL_H_ |
#include "base/basictypes.h" |
+#include "sync/base/sync_export.h" |
#include "sync/internal_api/public/base/ordinal.h" |
namespace syncer { |
@@ -42,13 +43,13 @@ COMPILE_ASSERT(NodeOrdinal::kRadix == 256, |
// field of SyncEntity) to a NodeOrdinal. This transformation |
// preserves the ordering relation: a < b under integer ordering if |
// and only if Int64ToNodeOrdinal(a) < Int64ToNodeOrdinal(b). |
-NodeOrdinal Int64ToNodeOrdinal(int64 x); |
+SYNC_EXPORT_PRIVATE NodeOrdinal Int64ToNodeOrdinal(int64 x); |
// The inverse of Int64ToNodeOrdinal. This conversion is, in general, |
// lossy: NodeOrdinals can have arbitrary fidelity, while numeric |
// positions contain only 64 bits of information (in fact, this is the |
// reason we've moved away from them). |
-int64 NodeOrdinalToInt64(const NodeOrdinal& ordinal); |
+SYNC_EXPORT_PRIVATE int64 NodeOrdinalToInt64(const NodeOrdinal& ordinal); |
} // namespace syncer |