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

Unified Diff: sync/syncable/syncable_enum_conversions.h

Issue 11624037: [sync] Componentize sync: Part 6: Add more SYNC_EXPORTs to files in src/sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (no code changes) Created 7 years, 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/syncable/syncable_base_transaction.h ('k') | sync/syncable/syncable_id.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/syncable_enum_conversions.h
diff --git a/sync/syncable/syncable_enum_conversions.h b/sync/syncable/syncable_enum_conversions.h
index 5ab66f0d95faf68c25e6228818d56a4f8a886375..3727420909b7fe873900279f13213ca19b0bb631 100644
--- a/sync/syncable/syncable_enum_conversions.h
+++ b/sync/syncable/syncable_enum_conversions.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.
@@ -7,6 +7,7 @@
// Keep this file in sync with entry_kernel.h.
+#include "sync/base/sync_export.h"
#include "sync/syncable/entry_kernel.h"
// Utility functions to get the string equivalent for some syncable
@@ -18,29 +19,32 @@ namespace syncable {
// The returned strings (which don't have to be freed) are in ASCII.
// The result of passing in an invalid enum value is undefined.
-const char* GetMetahandleFieldString(MetahandleField metahandle_field);
+SYNC_EXPORT_PRIVATE const char* GetMetahandleFieldString(
+ MetahandleField metahandle_field);
-const char* GetBaseVersionString(BaseVersion base_version);
+SYNC_EXPORT_PRIVATE const char* GetBaseVersionString(BaseVersion base_version);
-const char* GetInt64FieldString(Int64Field int64_field);
+SYNC_EXPORT_PRIVATE const char* GetInt64FieldString(Int64Field int64_field);
-const char* GetTimeFieldString(TimeField time_field);
+SYNC_EXPORT_PRIVATE const char* GetTimeFieldString(TimeField time_field);
-const char* GetIdFieldString(IdField id_field);
+SYNC_EXPORT_PRIVATE const char* GetIdFieldString(IdField id_field);
-const char* GetIndexedBitFieldString(IndexedBitField indexed_bit_field);
+SYNC_EXPORT_PRIVATE const char* GetIndexedBitFieldString(
+ IndexedBitField indexed_bit_field);
-const char* GetIsDelFieldString(IsDelField is_del_field);
+SYNC_EXPORT_PRIVATE const char* GetIsDelFieldString(IsDelField is_del_field);
-const char* GetBitFieldString(BitField bit_field);
+SYNC_EXPORT_PRIVATE const char* GetBitFieldString(BitField bit_field);
-const char* GetStringFieldString(StringField string_field);
+SYNC_EXPORT_PRIVATE const char* GetStringFieldString(StringField string_field);
-const char* GetProtoFieldString(ProtoField proto_field);
+SYNC_EXPORT_PRIVATE const char* GetProtoFieldString(ProtoField proto_field);
-const char* GetOrdinalFieldString(OrdinalField ordinal_field);
+SYNC_EXPORT_PRIVATE const char* GetOrdinalFieldString(
+ OrdinalField ordinal_field);
-const char* GetBitTempString(BitTemp bit_temp);
+SYNC_EXPORT_PRIVATE const char* GetBitTempString(BitTemp bit_temp);
} // namespace syncable
} // namespace syncer
« no previous file with comments | « sync/syncable/syncable_base_transaction.h ('k') | sync/syncable/syncable_id.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698